aboutsummaryrefslogtreecommitdiff
path: root/send+dump/Makefile
diff options
context:
space:
mode:
authorjdl <x75@users.sourceforge.net>2002-08-06 12:13:57 +0000
committerjdl <x75@users.sourceforge.net>2002-08-06 12:13:57 +0000
commit189c0787586602185fea7dcbc3ef37665b75ba45 (patch)
tree06e30a3a7e166b01134cc33ccda71034c876baf8 /send+dump/Makefile
This commit was generated by cvs2svn to compensate for changes in r75,svn2git-root
which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/OSCx/; revision=76
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
+
+