From: Andre P. <at...@us...> - 2004-05-14 06:05:23
|
Update of /cvsroot/hoc/hoc/InterfaceGenerator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10883/InterfaceGenerator Modified Files: Makefile.in Log Message: More build system changes ... Build system now actually implements the --with-ghc parameter :) -- define a $GHC variable in config.mk Added --with-ghc-pkg parameter (if you want to e.g. do "--with-ghc-pkg=ghc-pkg-6.2.1") Define $GHC_LIB_PATH in config.mk and use that rather than `ghc --print-libdir` in all the Makefiles Lifted DOT and POD2HTML autoconf substitutions to config.mk, rather than being output directly to docs/Makefile Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/InterfaceGenerator/Makefile.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.in 12 May 2004 08:59:38 -0000 1.2 +++ Makefile.in 14 May 2004 06:05:14 -0000 1.3 @@ -4,7 +4,7 @@ ifgen: mkdir -p build - ghc --make Main.hs \ + $(GHC) --make Main.hs \ -odir build -hidir build \ -package-conf ../HOC/HOC-$(PLATFORM).conf-inplace \ -o $@ |