clean all and clean clean :D
This commit is contained in:
parent
1158b206bc
commit
1de5581652
8
Makefile
8
Makefile
|
@ -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 \
|
||||||
|
|
Loading…
Reference in New Issue