diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-05-24 01:51:05 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-05-24 01:51:05 +0000 |
commit | eb688a8b22a03d660e4b439336c721912c1d6fee (patch) | |
tree | 87a14059050eb682a988e79563cca55edabd7e33 /Makefile | |
parent | fb5547a65d805fae2daa06ccf3b9dea234ffc4d8 (diff) |
- First stabs at getting pdvjtools as part of Pd-extended
- build fixes for Mac OS X
- updated help files to standard names
svn path=/trunk/externals/pdvjtools/; revision=9893
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..2b8688b --- /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] ~/code/pure-data/trunk/pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h |