Update of /cvsroot/hoc/hoc/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10883/docs
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/docs/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:14 -0000 1.1
+++ Makefile.in 14 May 2004 06:05:15 -0000 1.2
@@ -22,10 +22,10 @@
all: view
%.png: %.dot
- @DOT@ -Tpng
+ $(DOT) -Tpng
HOC.html: $(SOURCE_PODS) $(SOURCE_PMGS)
- @POD2HTML@ \
+ $(POD2HTML) \
--index \
--header \
--title="${TITLE}" \
|