diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-16 05:56:17 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-16 05:56:17 +0000 |
commit | 80eb47b2674815540b5de799e5ad9f82d170d8b8 (patch) | |
tree | 3f24c8c9f40ebe5eb6a5da28b4127e16301beb20 /send+dump/Makefile.in | |
parent | 1fcb551dff322d89005b3b241777c47754034917 (diff) |
a bunch of things to get the OSCx objects compiling to complete without error on MinGW. Moved the building of the OSC library to the 'lib' target. Move the building of the command utils to the 'utils' target. Neither 'lib' nor 'utils' are built with 'all', but they are built with 'install'. Copied externals/OSCx/src/htmsocket.c to externals/OSCx/send+dump/htmsocket.c since they seem to be the same file, but the send+dump one was out of date.
svn path=/trunk/externals/OSCx/; revision=4420
Diffstat (limited to 'send+dump/Makefile.in')
-rw-r--r-- | send+dump/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/send+dump/Makefile.in b/send+dump/Makefile.in index f7444a6..8bf6b69 100644 --- a/send+dump/Makefile.in +++ b/send+dump/Makefile.in @@ -1,3 +1,4 @@ +LIBS = @LIBS@ LIBOSCDIR = ../libOSC LIBOSC = ${LIBOSCDIR}/libOSC.a @@ -11,13 +12,13 @@ DUMPOBJS=dumpOSC.o both: sendOSC dumpOSC sendOSC: sendOSC.o htmsocket.o ${LIBOSC} - ${CC} ${CFLAGS} $(INCLUDES) -o sendOSC sendOSC.o htmsocket.o ${LIBOSC} + ${CC} ${CFLAGS} $(INCLUDES) -o sendOSC sendOSC.o htmsocket.o $(LIBS) ${LIBOSC} dumpOSC: ${DUMPOBJS} - ${CC} ${CFLAGS} $(INCLUDES) -o $@ ${DUMPOBJS} + ${CC} ${CFLAGS} $(INCLUDES) -o $@ ${DUMPOBJS} $(LIBS) dumpUDP: dumpUDP.o - ${CC} ${CFLAGS} $(INCLUDES) -o dumpUDP dumpUDP.o + ${CC} ${CFLAGS} $(INCLUDES) -o dumpUDP dumpUDP.o $(LIBS) ${LIBOSC}: echo "You need to go to " ${LIBOSCDIR} " and do a make." |