diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2007-08-08 07:57:35 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2007-08-08 07:57:35 +0000 |
commit | 28575bbc23db889f22cd819ed36150d6c23308ea (patch) | |
tree | ad4a67c26dffd459838bfafec3a0cfcd64ef4eda /extended | |
parent | b43b88f10c8354e2873ca8c581cee155e792aef6 (diff) |
+ removed flite and gfsm from build: pd-extended build ailing on mingw32_nt-5.1_windowsxp-i386 with 'no rule for ../flite/build.stamp'
svn path=/trunk/externals/moocow/; revision=8470
Diffstat (limited to 'extended')
-rw-r--r-- | extended/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/extended/Makefile b/extended/Makefile index 4250021..26df0f3 100644 --- a/extended/Makefile +++ b/extended/Makefile @@ -9,14 +9,16 @@ ## Variables SUBDIRS = \ - ../flite \ - ../gfsm \ ../deque \ ../readdir \ ../weightmap \ ../pdstring \ ../../sprinkler +SUBDIRS_DONT = \ + ../flite \ + ../gfsm + ##-- 'pdstring' and 'sprinkler' are already in 'flatspace' ... should they be moved here? ##-- local variables @@ -95,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,) |