From 80eb47b2674815540b5de799e5ad9f82d170d8b8 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 16 Jan 2006 05:56:17 +0000 Subject: 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 --- Makefile.in | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index d4aa84b..f8a2a58 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,12 +1,17 @@ dirs = libOSC send+dump src all: - cd libOSC ; make - cd src ; make - cd send+dump ; make + cd libOSC && make + cd src && make -install: all - cd src ; make install +lib: all + cd src && make lib + +utils: + cd send+dump && make + +install: all lib utils + cd src && make install clean: cd libOSC && make clean -- cgit v1.2.1