From: Andre P. <at...@us...> - 2004-05-12 08:59:47
|
Update of /cvsroot/hoc/hoc/Bindings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5553/Bindings Modified Files: Makefile.in Log Message: Better dependency checking in Makefiles: now a "make && make install" doesn't cause the make install to rebuild a whole bunch of things it doesn't need to Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/Bindings/Makefile.in,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.in 12 May 2004 05:44:09 -0000 1.1 +++ Makefile.in 12 May 2004 08:59:37 -0000 1.2 @@ -1,7 +1,10 @@ -all: +all: ifgen-output/Foundation.hs + +ifgen-output/Foundation.hs: ../InterfaceGenerator/ifgen clean: - rm -rf ifgen-output + -rm -rf ifgen-output all-selectors.txt install: all + |