Update of /cvsroot/pure-data/externals/bsaylor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18301/bsaylor
Modified Files: Makefile Log Message: updated makefile to the automatic version
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/bsaylor/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 7 Feb 2006 18:23:33 -0000 1.1 --- Makefile 9 Aug 2006 21:32:52 -0000 1.2 *************** *** 1,10 **** ! TARGET=bsaylor
default: ! make -C ../ $(TARGET)
install: ! make -C ../ $(TARGET)_install
clean: ! make -C ../ $(TARGET)_clean --- 1,17 ---- ! 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] ~/cvs/pure-data/pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h