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 = \ ...@@ -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 \
......
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