aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in15
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