From: Andre P. <at...@us...> - 2004-05-14 06:05:26
|
Update of /cvsroot/hoc/hoc/HOC_cbits In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10883/HOC_cbits 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/HOC_cbits/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:10 -0000 1.1 +++ Makefile.in 14 May 2004 06:05:14 -0000 1.2 @@ -37,9 +37,9 @@ cc -MM $(CFLAGS) $(SRCS) > depend install: all - mkdir -p `ghc --print-libdir`/HOC + mkdir -p $(GHC_LIB_PATH)/HOC cp -R libHOC_cbits.a HOC_cbits.o \ - `ghc --print-libdir`/HOC/ - ranlib `ghc --print-libdir`/HOC/libHOC_cbits.a + $(GHC_LIB_PATH)/HOC/ + ranlib $(GHC_LIB_PATH)/HOC/libHOC_cbits.a -include depend |