diff options
author | Cyrille Henry <nusmuk@users.sourceforge.net> | 2013-09-17 08:55:49 +0000 |
---|---|---|
committer | Cyrille Henry <nusmuk@users.sourceforge.net> | 2013-09-17 08:55:49 +0000 |
commit | 08390561e2e0f2f2f3150d4654941dba55261dd1 (patch) | |
tree | b98c70ed8a52f96bf08b48f49f14ad0ddab7073c | |
parent | 4a8948d25addaec2c4083632c70e0d3370aea8a5 (diff) |
a makefile to build nusmuk-audio and nusmuk-utils in the same time.
svn path=/trunk/externals/nusmuk/; revision=17205
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..55a550c --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +SUBDIRS = nusmuk-utils nusmuk-audio + +.PHONY: all clean + +all clean: + for dir in $(SUBDIRS); do \ + $(MAKE) -C $$dir $@; \ + done |