aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-07-25 14:25:46 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-07-25 14:25:46 +0000
commit1f4d2bf3627e646512a28737c830420ac46e96f7 (patch)
tree500fa8ef85b802a0dd654e415057b718d23783da /src/Makefile.in
parent2577ad67d045941cd41cbd42efb94b78f9d25f74 (diff)
install abstractions when doing "make install";
however, there is still one problem: the abstractions (with helpfiles) go into extra/iemmatrix/ which is not searched by default; solution is to either add this path to pd's search paths or (probably) use pd-extended's libdir thing. svn path=/trunk/externals/iem/iemmatrix/; revision=5409
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 6512897..c4225e7 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -56,7 +56,7 @@ cleanest: cleaner
distclean: cleanest newmakefile
-install: install-bin install-doc
+install: install-bin install-abs install-doc
install-bin:
-install -d $(INSTALL_BIN)
@@ -66,6 +66,10 @@ install-doc:
-install -d $(INSTALL_DOC)
-install -m 644 ../doc/*.pd $(INSTALL_DOC)
+install-abs:
+ -install -d $(INSTALL_BIN)
+ -install -m644 ../abs/*.pd $(INSTALL_BIN)
+
dist: all cleaner
(cd ../..;tar czvf $(TARNAME) $(LIBNAME))