diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2008-12-04 14:47:46 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2008-12-04 14:47:46 +0000 |
commit | 51b379a0186e4048d4fe09d43c610d41bbfaa458 (patch) | |
tree | e595341c87fbc247bcfb290b0e67ed3f11c34442 /extended | |
parent | 987b80c80b0403d96937f6ceb5c016d371a3142a (diff) |
+ added 'unused' attributes to gfsm externals code
+ updated extended/Makefile: don't call ./autogen.sh for gfsm stuff
svn path=/trunk/externals/moocow/; revision=10423
Diffstat (limited to 'extended')
-rw-r--r-- | extended/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extended/Makefile b/extended/Makefile index 4553533..2cd7b4a 100644 --- a/extended/Makefile +++ b/extended/Makefile @@ -24,7 +24,7 @@ SUBDIRS = \ MOOCOW_DIR ?=$(shell pwd) MOOCOW_BUILD ?=$(MOOCOW_DIR)/build.moo MOOCOW_MFLAGS ?=DESTDIR="" -MOOCOW_BUILD_VERSION ?=0.02 +MOOCOW_BUILD_VERSION ?=0.03 CONFIGURE_ARGS=\ CFLAGS="$(CFLAGS)" \ @@ -41,7 +41,7 @@ pd_src ?= $(CURDIR)/../../../pd ##====================================================================== ## Rules: default -all: config build.stamp +all: build.stamp ##====================================================================== ## Rules: subdirectory: dummy @@ -111,7 +111,7 @@ GFSM_DIR ?=../gfsm #GFSM_CONFIGURE_ARGS ?= gfsm.autogen_stamp: - (cd $(GFSM_DIR); sh ./autogen.sh) || true +# (cd $(GFSM_DIR); sh ./autogen.sh) || true touch $@ gfsm.configure_stamp: gfsm.autogen_stamp @@ -287,9 +287,9 @@ autogen: $(SUBDIRS:=.autogen_stamp) configure: $(SUBDIRS:=.configure_stamp) config: - @echo "MOOCOW_BUILD_VERSION=$(MOOCOW_BUILD_VERSION)" + @echo "(moocow:debug) MOOCOW_BUILD_VERSION=$(MOOCOW_BUILD_VERSION)" -build.stamp: $(SUBDIRS:=.build_stamp) +build.stamp: config $(SUBDIRS:=.build_stamp) rm -rf $(MOOCOW_BUILD)/noinstall touch $@ |