Update of /cvsroot/pure-data/externals/iemlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27820
Modified Files: Makefile Log Message: updated to match the new layout of iemlib
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/iemlib/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 14 Nov 2005 18:23:13 -0000 1.2 --- Makefile 9 Jan 2007 09:11:07 -0000 1.3 *************** *** 18,22 ****
$(IEMLIBS): ! $(MAKE) -C src/$@
install: install-bin install-doc install-abs --- 18,22 ----
$(IEMLIBS): ! $(MAKE) -C $@/src
install: install-bin install-doc install-abs *************** *** 28,32 **** install-doc: -install -d ${INSTALL_DOC} ! -install -m 644 iemhelp/*.pd $(INSTALL_DOC)
install-abs: --- 28,36 ---- install-doc: -install -d ${INSTALL_DOC} ! -for d in ${IEMLIBS}; do \ ! for e in pd wav; do \ ! install -m644 $$d/*.$$e $(INSTALL_DOC); \ ! done; \ ! done
install-abs: *************** *** 36,39 **** clean: for d in ${IEMLIBS}; do \ ! ${MAKE} -C src/$$d clean; \ done --- 40,43 ---- clean: for d in ${IEMLIBS}; do \ ! ${MAKE} -C $$d/src clean; \ done