aboutsummaryrefslogtreecommitdiff
path: root/send+dump/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'send+dump/Makefile')
-rw-r--r--send+dump/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/send+dump/Makefile b/send+dump/Makefile
new file mode 100644
index 0000000..7b14a43
--- /dev/null
+++ b/send+dump/Makefile
@@ -0,0 +1,25 @@
+LIBOSCDIR = ../libOSC
+LIBOSC = ${LIBOSCDIR}/libOSC.a
+CFLAGS= -O2 -I$(LIBOSCDIR)
+
+DUMPOBJS=dumpOSC.o
+
+
+both: sendOSC dumpOSC
+
+sendOSC: sendOSC.o htmsocket.o ${LIBOSC}
+ ${CC} -o sendOSC sendOSC.o htmsocket.o ${LIBOSC}
+
+dumpOSC: ${DUMPOBJS}
+ ${CC} -o $@ ${DUMPOBJS}
+
+dumpUDP: dumpUDP.o
+ ${CC} -o dumpUDP dumpUDP.o
+
+${LIBOSC}:
+ echo "You need to go to " ${LIBOSCDIR} " and do a make."
+
+clean:
+ rm -f sendOSC dumpOSC *.o
+
+