Update of /cvsroot/pure-data/externals/iem/iemmatrix/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29061
Modified Files: Makefile.in Log Message: 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.
Index: Makefile.in =================================================================== RCS file: /cvsroot/pure-data/externals/iem/iemmatrix/src/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.in 25 Jul 2006 14:11:30 -0000 1.9 --- Makefile.in 25 Jul 2006 14:25:46 -0000 1.10 *************** *** 57,61 **** distclean: cleanest newmakefile
! install: install-bin install-doc
install-bin: --- 57,61 ---- distclean: cleanest newmakefile
! install: install-bin install-abs install-doc
install-bin: *************** *** 67,70 **** --- 67,74 ---- -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))