diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2007-08-08 08:00:19 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2007-08-08 08:00:19 +0000 |
commit | fa3b0da8bcb13d58101dc99f8dc71458738ea10f (patch) | |
tree | 42dae7edd528979d14146911330417b61c3cc174 /extended | |
parent | 28575bbc23db889f22cd819ed36150d6c23308ea (diff) |
+ argh: makefile syntax fix
svn path=/trunk/externals/moocow/; revision=8471
Diffstat (limited to 'extended')
-rw-r--r-- | extended/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/extended/Makefile b/extended/Makefile index 26df0f3..0d46998 100644 --- a/extended/Makefile +++ b/extended/Makefile @@ -8,6 +8,10 @@ ##====================================================================== ## Variables +SUBDIRS_DONT = \ + ../flite \ + ../gfsm + SUBDIRS = \ ../deque \ ../readdir \ @@ -15,10 +19,6 @@ SUBDIRS = \ ../pdstring \ ../../sprinkler -SUBDIRS_DONT = \ - ../flite \ - ../gfsm - ##-- 'pdstring' and 'sprinkler' are already in 'flatspace' ... should they be moved here? ##-- local variables @@ -97,12 +97,12 @@ endef #$(eval $(call subdir_template,../gfsm,--disable-gfsm)) ##-- flite, gfsm: build 'em if you got 'em -#$(eval $(call subdir_template,../flite)) -#$(eval $(call subdir_template,../gfsm)) +$(eval $(call subdir_template,../flite,)) +$(eval $(call subdir_template,../gfsm,)) ##-- the usual suspects -$(eval $(call subdir_template,../deque,) +$(eval $(call subdir_template,../deque,)) $(eval $(call subdir_template,../pdstring,--enable-object-externals)) -$(eval $(call subdir_template,../readdir, -$(eval $(call subdir_template,../../sprinkler,) -$(eval $(call subdir_template,../weightmap,) +$(eval $(call subdir_template,../readdir,)) +$(eval $(call subdir_template,../../sprinkler,)) +$(eval $(call subdir_template,../weightmap,)) |