diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-04-04 22:10:41 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-04-04 22:10:41 +0000 |
commit | 4ddc89a36ab33d0b660b7312b9b9f9557e820a78 (patch) | |
tree | 7cbd2ca0f5e73f1493e568ce8528946f4421f860 /libOSC/Makefile.in | |
parent | 023de231af8193b25c88d90bcdcea62465eb6e41 (diff) |
cleaned up build system, especially for Darwin/MacOS X
svn path=/trunk/externals/OSCx/; revision=1549
Diffstat (limited to 'libOSC/Makefile.in')
-rw-r--r-- | libOSC/Makefile.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libOSC/Makefile.in b/libOSC/Makefile.in index 26dca72..d67ba88 100644 --- a/libOSC/Makefile.in +++ b/libOSC/Makefile.in @@ -1,19 +1,18 @@ -CFLAGS= -O2 -Wall -fPIC +#CFLAGS= -O2 -Wall -fPIC ARFLAGS=srv # uncomment the following for linux/win # DEFS= -Dunix -# and this for osx -# DEFS= -Dunix -DMACOSX LIB=libOSC.a -CFLAGS= @CFLAGS@ +CFLAGS=@CFLAGS@ +INCLUDES=@INCLUDES@ LIBOBJS= ${LIB}(OSC-client.o) ${LIB}(OSC-timetag.o) all: ${LIBOBJS} .c.a: - ${CC} -c ${CFLAGS} ${DEFS} $< + ${CC} -c ${CFLAGS} ${INCLUDES} ${DEFS} $< ${AR} ${ARFLAGS} $@ $*.o rm -f $*.o |