blob: 6ff1cf25084e956d753b9d5b4052d74e68a018e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
LIBOSCDIR = ../libOSC
LIBOSC = ${LIBOSCDIR}/libOSC.a
# for eg. linux
# DEFS= -Dunix
# for MAC OSX, should be DARWIN
# DEFS=-Dunix -DMACOSX
CFLAGS= @CFLAGS@
# INCLUDES= @INCLUDES@
DUMPOBJS=dumpOSC.o
both: sendOSC dumpOSC
sendOSC: sendOSC.o htmsocket.o ${LIBOSC}
${CC} ${CFLAGS} $(INCLUDES) -o sendOSC sendOSC.o htmsocket.o ${LIBOSC}
dumpOSC: ${DUMPOBJS}
${CC} ${CFLAGS} $(INCLUDES) -o $@ ${DUMPOBJS}
dumpUDP: dumpUDP.o
${CC} ${CFLAGS} $(INCLUDES) -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
|