Update of /cvsroot/pure-data/externals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30576
Modified Files: Tag: branch-v0-39-2-extended Makefile Log Message: added gem2pdp support from HEAD
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/Makefile,v retrieving revision 1.103.2.11 retrieving revision 1.103.2.12 diff -C2 -d -r1.103.2.11 -r1.103.2.12 *** Makefile 24 Apr 2007 23:44:25 -0000 1.103.2.11 --- Makefile 27 Apr 2007 03:54:43 -0000 1.103.2.12 *************** *** 132,139 **** else ifeq ($(OS_NAME),darwin) ! LIB_TARGETS += hid pdp pidip else # GNU/Linux, BSD, IRIX, etc. ! LIB_TARGETS += hid pdp pidip endif endif --- 132,139 ---- else ifeq ($(OS_NAME),darwin) ! LIB_TARGETS += hid pdp pidip gem2pdp else # GNU/Linux, BSD, IRIX, etc. ! LIB_TARGETS += hid pdp pidip gem2pdp endif endif *************** *** 200,204 **** $(externals_src)/ggee/*/*-help.pd \ $(externals_src)/ggee/*/*.gif \ - $(externals_src)/gem2pdp/*.pd \ $(externals_src)/ff/*.pd \ $(externals_src)/hcs/*-help.pd \ --- 200,203 ---- *************** *** 797,800 **** --- 796,849 ----
+ + #------------------------------------------------------------------------------# + # GEM2PDP + GEM2PDP_NAME=gem2pdp + GEM2PDP_OBJECTS := $(wildcard $(externals_src)/gem2pdp/*.c) + $(externals_src)/gem2pdp/configure: $(externals_src)/gem2pdp/configure.ac + cd $(externals_src)/gem2pdp && autoconf + + $(externals_src)/gem2pdp/Makefile: $(externals_src)/gem2pdp/Makefile.in + cd $(externals_src)/gem2pdp && ./configure --with-pddir=$(pd_src) \ + --with-gemdir=$(gem_src) --with-pdpdir=$(externals_src)/pdp + + $(externals_src)/gem2pdp/gem2pdp.$(EXTENSION): \ + $(externals_src)/gem2pdp/configure $(externals_src)/gem2pdp/Makefile + $(MAKE) -C $(externals_src)/gem2pdp + + gem2pdp: $(externals_src)/gem2pdp/gem2pdp.$(EXTENSION) + + gem2pdp_install: gem2pdp + # install -d $(objectsdir)/$(GEM2PDP_NAME) + # $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(GEM2PDP_NAME) \ + # --author "Yves Degoyon, Jamie Tittle, Georg Holzmann" \ + # --description "Bridges between Gem and PDP" \ + # --version "0.6" + install -p $(wildcard $(externals_src)/gem2pdp/*.$(EXTENSION)) $(objectsdir) + # install -d $(helpdir)/$(GEM2PDP_NAME) + install -p $(externals_src)/gem2pdp/*.pd $(helpdir) + # install -d $(manualsdir)/$(GEM2PDP_NAME) + # install -p $(externals_src)/gem2pdp/manual.txt \ + # $(manualsdir)/$(GEM2PDP_NAME) + install -d $(readmesdir) + install -p $(externals_src)/gem2pdp/README \ + $(readmesdir)/$(GEM2PDP_NAME).txt + # install -d $(examplesdir)/$(GEM2PDP_NAME) + # install -p $(externals_src)/gem2pdp/examples/*.pd \ + # $(examplesdir)/$(GEM2PDP_NAME) + + gem2pdp_clean: + -rm -rf -- $(externals_src)/gem2pdp/autom4te.cache + -rm -f -- $(externals_src)/gem2pdp/config.status + -rm -f -- $(externals_src)/gem2pdp/config.log + -rm -f -- $(externals_src)/gem2pdp/configure + -rm -f -- $(externals_src)/gem2pdp/Makefile + -rm -f -- $(externals_src)/gem2pdp/*.$(EXTENSION) + -rm -f -- $(externals_src)/gem2pdp/*.o + -rm -f -- $(externals_src)/gem2pdp/*.bak + -rm -f -- $(externals_src)/gem2pdp/*.*~ + + + #------------------------------------------------------------------------------# # GGEE