Update of /cvsroot/pure-data/externals/OSCx/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31390/src
Modified Files: Makefile.in Log Message: made the building of the OSC.pd_ext library optional, with its own 'lib' target. The lib doesn't build on MinGW, so this makes everything the same on all Pd-extended platforms. Plus the lib isn't really needed anyway.
Index: Makefile.in =================================================================== RCS file: /cvsroot/pure-data/externals/OSCx/src/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.in 19 Dec 2005 04:11:47 -0000 1.9 --- Makefile.in 16 Jan 2006 05:09:23 -0000 1.10 *************** *** 29,33 **** SOURCES = OSC-pattern-match.c OSC.c dumpOSC.c htmsocket.c OSCroute.c sendOSC.c OSC-system-dependent.c TARGETS = $(SOURCES:.c=.o) ! EXTS=sendOSC.@pd_suffix@ dumpOSC.@pd_suffix@ OSCroute.@pd_suffix@ OSC.@pd_suffix@
# ----------------------- autoconf ----------------------- --- 29,33 ---- SOURCES = OSC-pattern-match.c OSC.c dumpOSC.c htmsocket.c OSCroute.c sendOSC.c OSC-system-dependent.c TARGETS = $(SOURCES:.c=.o) ! EXTS=sendOSC.@pd_suffix@ dumpOSC.@pd_suffix@ OSCroute.@pd_suffix@
# ----------------------- autoconf ----------------------- *************** *** 35,38 **** --- 35,40 ---- all: $(EXTS)
+ lib: OSC.@pd_suffix@ + dumpOSC.@pd_suffix@: dumpOSC.o $(CC) $(LDFLAGS) -o dumpOSC.@pd_suffix@ $? $(LIBS)