diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-11-10 00:40:02 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-11-10 00:40:02 +0000 |
commit | dc86a87016dcb6fd64912ee861eaa8c5d9fa591a (patch) | |
tree | 3baa77f5078331d16db8bb48aed4b772d1d08b30 /externals/vanilla/Makefile | |
parent | 64dd690e836f19cfac3f5a062fa21d148c4e8b56 (diff) |
renaming this to 'vanilla' since that's the most common name used for the core of Pd
svn path=/trunk/; revision=12733
Diffstat (limited to 'externals/vanilla/Makefile')
-rw-r--r-- | externals/vanilla/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/externals/vanilla/Makefile b/externals/vanilla/Makefile new file mode 100644 index 00000000..a13265fb --- /dev/null +++ b/externals/vanilla/Makefile @@ -0,0 +1,15 @@ +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 + |