aboutsummaryrefslogtreecommitdiff
path: root/libOSC/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libOSC/Makefile')
-rw-r--r--libOSC/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/libOSC/Makefile b/libOSC/Makefile
deleted file mode 100644
index f1585fa..0000000
--- a/libOSC/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-CFLAGS= -O2 -Wall -fPIC
-ARFLAGS=srv
-# uncomment the following for linux/win
-# DEFS= -Dunix
-# and this for osx
-DEFS= -Dunix -DMACOSX
-LIB=libOSC.a
-
-LIBOBJS= ${LIB}(OSC-client.o) ${LIB}(OSC-timetag.o)
-
-all: ${LIBOBJS}
-
-.c.a:
- ${CC} -c ${CFLAGS} ${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