Update of /cvsroot/pure-data/externals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8336
Modified Files: Makefile TODO Log Message: turned on gdb debugging flags; added corelibs to Pd-extended bulid system, doesn't build by default yet
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/Makefile,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** Makefile 25 May 2006 17:06:37 -0000 1.60 --- Makefile 27 May 2006 10:53:14 -0000 1.61 *************** *** 41,50 **** DEBUG_CFLAGS = -ggdb
! OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer $(DEBUG_CFLAGS)
# this variable is to support old "win" directories, rather than "windows" BUILDSRC_OS_NAME = $(OS_NAME)
! CFLAGS = -DPD $(OPT_CFLAGS) -I$(pd_src)/src -Wall -W LDFLAGS = LIBS = -lm --- 41,50 ---- DEBUG_CFLAGS = -ggdb
! OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer
# this variable is to support old "win" directories, rather than "windows" BUILDSRC_OS_NAME = $(OS_NAME)
! CFLAGS = -DPD $(OPT_CFLAGS) -I$(pd_src)/src -Wall -W $(DEBUG_CFLAGS) LDFLAGS = LIBS = -lm *************** *** 102,107 **** cat $(dir $*)../$(BUILDSRC_OS_NAME)/$(notdir $*).libs` chmod a-x "$*.$(EXTENSION)" ! $(STRIP) $*.$(EXTENSION) ! rm -f -- $*.o
--- 102,107 ---- cat $(dir $*)../$(BUILDSRC_OS_NAME)/$(notdir $*).libs` chmod a-x "$*.$(EXTENSION)" ! # $(STRIP) $*.$(EXTENSION) ! # rm -f -- $*.o
*************** *** 287,290 **** --- 287,324 ----
#------------------------------------------------------------------------------# + # CORELIBS + CORELIBS_NAME=corelibs + CORELIBS_OBJECTS := $(wildcard $(externals_src)/corelibs/*.c) + corelibs: $(CORELIBS_OBJECTS:.c=.$(EXTENSION)) + + corelibs_install: corelibs + install -d $(objectsdir)/$(CORELIBS_NAME) + $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(CORELIBS_NAME) \ + --author "" \ + --description "" \ + --license "" \ + --version "" + install -p $(CORELIBS_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(CORELIBS_NAME) + install -d $(helpdir)/$(CORELIBS_NAME) + install -p $(externals_src)/corelibs/help/*.pd \ + $(helpdir)/$(CORELIBS_NAME) + # install -d $(manualsdir)/$(CORELIBS_NAME) + # install -p $(externals_src)/corelibs/manual.txt \ + # $(manualsdir)/$(CORELIBS_NAME) + install -p $(externals_src)/corelibs/README \ + $(readmesdir)/$(CORELIBS_NAME).txt + install -d $(examplesdir)/$(CORELIBS_NAME) + install -p $(externals_src)/corelibs/examples/*.pd \ + $(examplesdir)/$(CORELIBS_NAME) + + corelibs_clean: + -rm -f -- $(CORELIBS_OBJECTS:.c=.$(EXTENSION)) + -rm -f -- $(CORELIBS_OBJECTS:.c=.o) + -rm -f -- $(externals_src)/corelibs/*.bak + -rm -f -- $(externals_src)/corelibs/*.*~ + + + + #------------------------------------------------------------------------------# # CREB CREB_NAME=creb *************** *** 1094,1098 ****
- #---------------------------------------------------------------------------- # OSCx --- 1128,1131 ----
Index: TODO =================================================================== RCS file: /cvsroot/pure-data/externals/TODO,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TODO 17 Mar 2006 05:00:53 -0000 1.1 --- TODO 27 May 2006 10:53:14 -0000 1.2 *************** *** 18,22 ****
Gem/scale - iem/prepend flext/prepend
--- 18,21 ----