Update of /cvsroot/pure-data/externals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31651
Modified Files: Makefile Log Message: removed the "-Wall" flag (there is NO use for this flag in a generic build system); build zexy using zexy's build system
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/Makefile,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -d -r1.90 -r1.91 *** Makefile 24 Sep 2006 22:08:34 -0000 1.90 --- Makefile 25 Sep 2006 12:00:42 -0000 1.91 *************** *** 42,46 **** BUILDSRC_OS_NAME = $(OS_NAME)
! CFLAGS = -DPD $(OPT_CFLAGS) -I$(pd_src)/src -Wall -W $(DEBUG_CFLAGS) LDFLAGS = LIBS = -lm --- 42,47 ---- BUILDSRC_OS_NAME = $(OS_NAME)
! #CFLAGS = -DPD $(OPT_CFLAGS) -I$(pd_src)/src -Wall -W $(DEBUG_CFLAGS) ! CFLAGS = -DPD $(OPT_CFLAGS) -I$(pd_src)/src -W $(DEBUG_CFLAGS) LDFLAGS = LIBS = -lm *************** *** 1994,1998 **** grep -v _VERSION | cut -d ' ' -f 3 | cut -d '"' -f 2)
! zexy: $(ZEXY_OBJECTS:.c=.$(EXTENSION))
zexy_install: zexy --- 1995,2004 ---- grep -v _VERSION | cut -d ' ' -f 3 | cut -d '"' -f 2)
! zexy_configure: ! make -C $(externals_src)/zexy/src/ configure ! cd $(externals_src)/zexy/src/ && ./configure --disable-library ! ! zexy: zexy_configure ! make -C $(externals_src)/zexy/src/
zexy_install: zexy *************** *** 2003,2007 **** --description "GUI and streaming objects" \ --version "$(ZEXY_VERSION)" ! install -p $(ZEXY_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(ZEXY_NAME) install -p $(shell ls -1 $(externals_src)/zexy/abs/*.pd | \ grep -v '-help.pd' | sed 's|(.*)|"\1"|g') \ --- 2009,2014 ---- --description "GUI and streaming objects" \ --version "$(ZEXY_VERSION)" ! # install -p $(ZEXY_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(ZEXY_NAME) ! install -p $(wildcard $(externals_src)/zexy/src/*.$(EXTENSION)) $(objectsdir)/$(ZEXY_NAME) install -p $(shell ls -1 $(externals_src)/zexy/abs/*.pd | \ grep -v '-help.pd' | sed 's|(.*)|"\1"|g') \