diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-17 05:33:53 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-17 05:33:53 +0000 |
commit | 59fe72b56dd0b97625a8061304b257269c00d790 (patch) | |
tree | e7fe652cfea0ff7883c6a0609c37c3867780669b /Makefile | |
parent | f29e5ba61aebdda221b201e35bb47a4a9c885735 (diff) |
added mrpeach targets and added missing header to get things compiling on Mac OS X
svn path=/trunk/externals/mrpeach/; revision=5636
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..576ff87 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +TARGET := $(shell pwd | sed 's|.*/\(.*\)$$|\1|') +EXTERNALS_ROOT := $(shell pwd | sed 's|^\(/.*externals\).*|\1|') + +default: + make -C $(EXTERNALS_ROOT) $(TARGET) + +install: + make -C $(EXTERNALS_ROOT) $(TARGET)_install + +clean: + make -C $(EXTERNALS_ROOT) $(TARGET)_clean + +test_locations: + make -C $(EXTERNALS_ROOT) test_locations + +etags: + etags *.[ch] ~/cvs/pure-data/pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h |