aboutsummaryrefslogtreecommitdiff
path: root/libOSC/Makefile.in
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-16 18:45:39 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-16 18:45:39 +0000
commit9a4263e499b328a6943e75d97358933597d390cb (patch)
tree52bd8073c0992b138003c29e5f0e2c692fde631d /libOSC/Makefile.in
parent07e371b1ec2fd16de0cc965b2f935e2aee3ce6ae (diff)
converted OSCx to the Library Template and bumped the version to 0.3.1
svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16399
Diffstat (limited to 'libOSC/Makefile.in')
-rw-r--r--libOSC/Makefile.in27
1 files changed, 0 insertions, 27 deletions
diff --git a/libOSC/Makefile.in b/libOSC/Makefile.in
deleted file mode 100644
index 7d09fcb..0000000
--- a/libOSC/Makefile.in
+++ /dev/null
@@ -1,27 +0,0 @@
-#CFLAGS= -O2 -Wall -fPIC
-ARFLAGS=srv
-# uncomment the following for linux/win
-# DEFS= -Dunix
-LIB=libOSC.a
-
-CFLAGS=@CFLAGS@
-INCLUDES=@INCLUDES@
-
-LIBOBJS= ${LIB}(OSC-client.o) ${LIB}(OSC-timetag.o)
-
-all: ${LIBOBJS}
-
-.c.a:
- ${CC} -c ${CFLAGS} ${INCLUDES} ${DEFS} $<
- ${AR} ${ARFLAGS} $@ $*.o
- rm -f $*.o
-
-test_OSC: test_OSC.o ${LIB}
- $(CC) -o test_OSC test_OSC.o ${LIB}
-
-test_OSC_timeTag: test_OSC_timeTag.o OSC-timetag.o
- $(CC) -o test_OSC_timeTag test_OSC_timeTag.o OSC-timetag.o
-
-
-clean:
- rm -f ${LIB} *.o