From 1f4d2bf3627e646512a28737c830420ac46e96f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 25 Jul 2006 14:25:46 +0000 Subject: 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 --- src/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/Makefile.in') 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)) -- cgit v1.2.1