aboutsummaryrefslogtreecommitdiff
path: root/send+dump
diff options
context:
space:
mode:
authorjdl <x75@users.sourceforge.net>2004-03-10 00:01:56 +0000
committerjdl <x75@users.sourceforge.net>2004-03-10 00:01:56 +0000
commitd8847bccfcc9ac116d81cd18ce485f5595e7f6bb (patch)
tree96cb0fd40422be9c1134f3b798e0123dbe2b24c2 /send+dump
parente6fab9c5c8c0a32bbb1ef95e9bff5abc5a773bf5 (diff)
changed to single external style ...
svn path=/trunk/externals/OSCx/; revision=1399
Diffstat (limited to 'send+dump')
-rw-r--r--send+dump/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/send+dump/Makefile b/send+dump/Makefile
deleted file mode 100644
index a2d1180..0000000
--- a/send+dump/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-LIBOSCDIR = ../libOSC
-LIBOSC = ${LIBOSCDIR}/libOSC.a
-# for eg. linux
-# DEFS= -Dunix
-# for MAC OSX, should be DARWIN
-DEFS=-Dunix -DMACOSX
-
-CFLAGS= -O2 -I$(LIBOSCDIR) $(DEFS) -Wall
-
-DUMPOBJS=dumpOSC.o
-
-
-both: sendOSC dumpOSC
-
-sendOSC: sendOSC.o htmsocket.o ${LIBOSC}
- ${CC} ${CFLAGS} ${DEFS} -o sendOSC sendOSC.o htmsocket.o ${LIBOSC}
-
-dumpOSC: ${DUMPOBJS}
- ${CC} ${CFLAGS} ${DEFS} -o $@ ${DUMPOBJS}
-
-dumpUDP: dumpUDP.o
- ${CC} ${CFLAGS} ${DEFS} -o dumpUDP dumpUDP.o
-
-${LIBOSC}:
- echo "You need to go to " ${LIBOSCDIR} " and do a make."
- (cd ../libOSC ; make)
-
-clean:
- rm -f sendOSC dumpOSC *.o
-
-