From: Andre P. <at...@us...> - 2004-05-12 08:59:48
|
Update of /cvsroot/hoc/hoc/InterfaceGenerator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5553/InterfaceGenerator 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/InterfaceGenerator/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:11 -0000 1.1 +++ Makefile.in 12 May 2004 08:59:38 -0000 1.2 @@ -1,11 +1,13 @@ include ../config.mk -all: +all: ifgen + +ifgen: mkdir -p build ghc --make Main.hs \ -odir build -hidir build \ -package-conf ../HOC/HOC-$(PLATFORM).conf-inplace \ - -o ifgen + -o $@ clean: rm -rf ifgen build |