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: all:
msgfmt Messages/fr/LC_MESSAGES/gajim.po -o Messages/fr/LC_MESSAGES/gajim.mo msgfmt Messages/fr/LC_MESSAGES/gajim.po -o Messages/fr/LC_MESSAGES/gajim.mo
for dir in $(MODULES); do \ $(foreach sdir, $(MODULES), make -C $(sdir) all;)
(cd $$dir; make all); \
done
clean: clean:
find -name *.pyc -exec rm {} \; find -name *.pyc -exec rm {} \;
for dir in $(MODULES) ; do \ $(foreach sdir, $(MODULES), make -C $(sdir) clean;)
(cd $$dir; make clean); \
done
install: install:
for d in $(DIRS) ; do \ for d in $(DIRS) ; do \