From baa8aab7418a8f74ac3726417a3609396de886ae Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 23 Mar 2005 11:52:25 +0000 Subject: [PATCH] split the makefile so we can now build only one module and not the others --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d39e8faf8..75cc08ff1 100644 --- a/Makefile +++ b/Makefile @@ -14,14 +14,22 @@ LANGS = fr pt_BR SCRIPTS = \ scripts/gajim -all: +all: translation trayicon idle + +translation: for l in $(LANGS) ; do \ msgfmt Messages/$$l/LC_MESSAGES/gajim.po -o Messages/$$l/LC_MESSAGES/gajim.mo; \ done - $(foreach sdir, $(MODULES), make -C $(sdir) all;) + +trayicon: + make -C plugins/gtkgui all; + +idle: + make -C common all; clean: find -name *.pyc -exec rm {} \; + find -name *.mo -exec rm {} \; $(foreach sdir, $(MODULES), make -C $(sdir) clean;) # FIXME -- olé gorito