diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-16 05:09:23 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-16 05:09:23 +0000 |
commit | 1fcb551dff322d89005b3b241777c47754034917 (patch) | |
tree | 8a085e91cae181d93be48eda007359286e484667 | |
parent | 7ef0c29f312b04359a27fcb040f54aea610b3594 (diff) |
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
-rw-r--r-- | src/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
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) |