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 /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 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 10 insertions, 5 deletions
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 |