Commit 2ce0ff5d authored by Sam Hocevar's avatar Sam Hocevar

* ./Makefile: fixed directory browsing with "clean" and "distclean" rules.

parent 6b9376db
...@@ -135,7 +135,7 @@ po-clean: ...@@ -135,7 +135,7 @@ po-clean:
-cd po && $(MAKE) clean -cd po && $(MAKE) clean
plugins-clean: plugins-clean:
for dir in $(shell echo $(PLUGIN_OBJ) $(BUILTIN_OBJ) | sed 's@\([^ ]*\)/[^ ]*@\1@g' ) ; do ( PWD=`pwd` ; cd $${dir} && $(MAKE) -f $$PWD/Makefile.modules clean ) ; done for dir in $(shell echo $(PLUGIN_OBJ) $(BUILTIN_OBJ) | sed 's@\([^ ]*\)/[^ ]*@\1@g' ) ; do ( PARENT=`pwd` ; cd $${dir} && $(MAKE) -f $$PARENT/Makefile.modules clean PARENT=$$PARENT ) ; done
vlc-clean: vlc-clean:
rm -f $(C_OBJ) $(CPP_OBJ) rm -f $(C_OBJ) $(CPP_OBJ)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment