Skip to content
Snippets Groups Projects
Commit 1de55816 authored by Vincent Hanquez's avatar Vincent Hanquez
Browse files

clean all and clean clean :D

parent 1158b206
No related branches found
No related tags found
No related merge requests found
......@@ -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 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment