diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-12-13 05:24:16 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-12-13 05:24:16 +0000 |
commit | 1979f4b826560ec32ebb77c3c2c0e8506498b162 (patch) | |
tree | 8d10873e9cf1c8abb53574f750dd1228ed6ee618 /Makefile | |
parent | 575e234b005d45dbcdf2afb274df56aac995ef2a (diff) |
addeding jsarlo's windowing objects to the Pd-extended build system; added postlude to the GNU/Linux builds and usbhid to the Darwin builds. Darwin doesn't have DSSI and Fedora doesn't have libhid-devel, otherwise I could add these two packages to those platforms
svn path=/trunk/externals/windowing/; revision=9091
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..b8e8987 --- /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] ../../pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h |