clean all and clean clean :D

This commit is contained in:
Vincent Hanquez 2004-11-25 23:01:38 +00:00
parent 1158b206bc
commit 1de5581652
1 changed files with 2 additions and 6 deletions

View File

@ -10,15 +10,11 @@ SCRIPTS = \
all:
msgfmt Messages/fr/LC_MESSAGES/gajim.po -o Messages/fr/LC_MESSAGES/gajim.mo
for dir in $(MODULES); do \
(cd $$dir; make all); \
done
$(foreach sdir, $(MODULES), make -C $(sdir) all;)
clean:
find -name *.pyc -exec rm {} \;
for dir in $(MODULES) ; do \
(cd $$dir; make clean); \
done
$(foreach sdir, $(MODULES), make -C $(sdir) clean;)
install:
for d in $(DIRS) ; do \