split the makefile so we can now build only one module and not the others
This commit is contained in:
parent
db818cdace
commit
baa8aab741
1 changed files with 10 additions and 2 deletions
12
Makefile
12
Makefile
|
@ -14,14 +14,22 @@ LANGS = fr pt_BR
|
||||||
SCRIPTS = \
|
SCRIPTS = \
|
||||||
scripts/gajim
|
scripts/gajim
|
||||||
|
|
||||||
all:
|
all: translation trayicon idle
|
||||||
|
|
||||||
|
translation:
|
||||||
for l in $(LANGS) ; do \
|
for l in $(LANGS) ; do \
|
||||||
msgfmt Messages/$$l/LC_MESSAGES/gajim.po -o Messages/$$l/LC_MESSAGES/gajim.mo; \
|
msgfmt Messages/$$l/LC_MESSAGES/gajim.po -o Messages/$$l/LC_MESSAGES/gajim.mo; \
|
||||||
done
|
done
|
||||||
$(foreach sdir, $(MODULES), make -C $(sdir) all;)
|
|
||||||
|
trayicon:
|
||||||
|
make -C plugins/gtkgui all;
|
||||||
|
|
||||||
|
idle:
|
||||||
|
make -C common all;
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
find -name *.pyc -exec rm {} \;
|
find -name *.pyc -exec rm {} \;
|
||||||
|
find -name *.mo -exec rm {} \;
|
||||||
$(foreach sdir, $(MODULES), make -C $(sdir) clean;)
|
$(foreach sdir, $(MODULES), make -C $(sdir) clean;)
|
||||||
|
|
||||||
# FIXME -- olé gorito
|
# FIXME -- olé gorito
|
||||||
|
|
Loading…
Add table
Reference in a new issue