diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-01-25 22:31:47 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-01-25 22:31:47 +0000 |
commit | 4d788c826b6e354f6aa29a047dcd2e93bb220c73 (patch) | |
tree | 2d13ab1ddb9b10656ded305c1d43e4cbae038965 /extended | |
parent | 9f6510850e3782a22b0ac282161f5e1e7413f3f2 (diff) |
+ updated extended/Makefile to include new locale/ subdir
svn path=/trunk/externals/moocow/; revision=10641
Diffstat (limited to 'extended')
-rw-r--r-- | extended/Makefile | 40 |
1 files changed, 36 insertions, 4 deletions
diff --git a/extended/Makefile b/extended/Makefile index 0296e30..7de5c1a 100644 --- a/extended/Makefile +++ b/extended/Makefile @@ -9,13 +9,14 @@ ## Variables SUBDIRS = \ + locale \ + pdstring \ flite \ - gfsm \ deque \ readdir \ weightmap \ - pdstring \ - sprinkler + sprinkler \ + gfsm ##-- 'pdstring' and 'sprinkler' are already in 'flatspace' ... should they be moved here? ## -> 2008-08: removed any2string,string2any,pdstring from flatspace @@ -24,7 +25,7 @@ SUBDIRS = \ MOOCOW_DIR ?=$(shell pwd) MOOCOW_BUILD ?=$(MOOCOW_DIR)/build.moo MOOCOW_MFLAGS ?=DESTDIR="" -MOOCOW_BUILD_VERSION ?=2009-01-23.000 +MOOCOW_BUILD_VERSION ?=2009-01-25.000 CONFIGURE_ARGS=\ CFLAGS="$(CFLAGS)" \ @@ -170,6 +171,37 @@ deque.cvsclean: deque.extclean $(MAKE) -C $(DEQUE_DIR) cvsclean || $(ONFAIL) ##====================================================================== +## Rules: subdirectory: locale + +LOCALE_DIR ?=../locale +#LOCALE_CONFIGURE_ARGS ?= +#LOCALE_CONFIGURE_ARGS ?= + +locale.autogen_stamp: +# (cd $(LOCALE_DIR); sh ./autogen.sh) || $(ONFAIL) + touch $@ + +locale.configure_stamp: locale.autogen_stamp + (cd $(LOCALE_DIR); sh ./configure $(CONFIGURE_ARGS) $(LOCALE_CONFIGURE_ARGS); make clean) || $(ONFAIL) + touch $@ + +locale.build_stamp: locale.configure_stamp + $(MAKE) $(MOOCOW_MFLAGS) -C $(LOCALE_DIR) all install || $(ONFAIL) + touch $@ + +locale.extclean: + rm -f locale.autogen_stamp locale.configure_stamp locale.build_stamp + +locale.clean: locale.extclean + $(MAKE) -C $(LOCALE_DIR) clean || $(ONFAIL) + +locale.distclean: locale.extclean + $(MAKE) -C $(LOCALE_DIR) distclean || $(ONFAIL) + +locale.cvsclean: locale.extclean + $(MAKE) -C $(LOCALE_DIR) cvsclean || $(ONFAIL) + +##====================================================================== ## Rules: subdirectory: pdstring PDSTRING_DIR ?=../pdstring |