diff options
author | jdl <x75@users.sourceforge.net> | 2002-08-06 12:13:57 +0000 |
---|---|---|
committer | jdl <x75@users.sourceforge.net> | 2002-08-06 12:13:57 +0000 |
commit | 189c0787586602185fea7dcbc3ef37665b75ba45 (patch) | |
tree | 06e30a3a7e166b01134cc33ccda71034c876baf8 /libOSC/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 'libOSC/Makefile')
-rw-r--r-- | libOSC/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libOSC/Makefile b/libOSC/Makefile new file mode 100644 index 0000000..6261b37 --- /dev/null +++ b/libOSC/Makefile @@ -0,0 +1,21 @@ +CFLAGS= -O2 +LIB=libOSC.a + +LIBOBJS= ${LIB}(OSC-client.o) ${LIB}(OSC-timetag.o) + +all: ${LIBOBJS} + +.c.a: + ${CC} -c ${CFLAGS} $< + ${AR} ${ARFLAGS} $@ $*.o + rm -f $*.o + +test_OSC: test_OSC.o ${LIB} + cc -o test_OSC test_OSC.o ${LIB} + +test_OSC_timeTag: test_OSC_timeTag.o OSC-timetag.o + cc -o test_OSC_timeTag test_OSC_timeTag.o OSC-timetag.o + + +clean: + rm -f ${LIB} *.o |