diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-07-09 20:45:58 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-07-09 20:45:58 +0000 |
commit | 17ec1deb74e2e934dc11fb4d9a2f8c6cef34c5a7 (patch) | |
tree | ce721cdc62bab6b69dbd023abfc3075d2609f64c /Makefile |
This commit was generated by cvs2svn to compensate for changes in r7949,svn2git-root
which included commits to RCS files with non-trunk default branches.
svn path=/trunk/externals/moonlib/; revision=7950
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ae29994 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +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] $(EXTERNALS_ROOT)/../pd/src/*.[ch] /usr/include/*.h \ + /usr/include/*/*.h |