diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-11-28 18:40:49 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-11-28 18:40:49 +0000 |
commit | 7804e0c5da47f480f2318542b10101a67ab2804e (patch) | |
tree | 3fdb9953cc371e513eeaa711c49c815245680a86 /Makefile | |
parent | 61017dbf07a1f497574cd9d5f4cdecb8c5285f2e (diff) |
made jasch_lib build with standard dev layout and with Pd-extended
svn path=/trunk/externals/jasch_lib/; revision=6499
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 |