From 1fcb551dff322d89005b3b241777c47754034917 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 16 Jan 2006 05:09:23 +0000 Subject: 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. svn path=/trunk/externals/OSCx/; revision=4418 --- src/Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile.in b/src/Makefile.in index 02b0751..41032de 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -28,12 +28,14 @@ prefix=@prefix@ 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@ +EXTS=sendOSC.@pd_suffix@ dumpOSC.@pd_suffix@ OSCroute.@pd_suffix@ # ----------------------- autoconf ----------------------- all: $(EXTS) +lib: OSC.@pd_suffix@ + dumpOSC.@pd_suffix@: dumpOSC.o $(CC) $(LDFLAGS) -o dumpOSC.@pd_suffix@ $? $(LIBS) -- cgit v1.2.1