update build instructions

This commit is contained in:
Don Stewart 2005-09-03 03:37:37 +00:00
parent 90d780cff8
commit 1191f0595e
2 changed files with 10 additions and 9 deletions

View File

@ -47,6 +47,9 @@ check:
CLEAN_FILES += *.conf.*.old *~ CLEAN_FILES += *.conf.*.old *~
EXTRA_CLEANS+=*.conf.inplace* *.conf.in *.h autom4te.cache \
config.h config.mk config.log config.status
clean: clean:
cd docs && $(MAKE) clean cd docs && $(MAKE) clean
runhaskell Setup.hs clean 2> /dev/null || true runhaskell Setup.hs clean 2> /dev/null || true
@ -63,11 +66,6 @@ clean:
rm -rf examples/hmake/lib-plugs/plugs rm -rf examples/hmake/lib-plugs/plugs
rm -rf examples/hmake/one-shot/runplugs rm -rf examples/hmake/one-shot/runplugs
rm -f EvalHaskell.h rm -f EvalHaskell.h
EXTRA_CLEANS+=*.conf.inplace* *.conf.in *.h autom4te.cache \
config.h config.mk config.log config.status
distclean: clean
rm -rf $(EXTRA_CLEANS) rm -rf $(EXTRA_CLEANS)
-include config.mk -include config.mk

11
README
View File

@ -25,9 +25,9 @@ Read the documentation in doc/ for more.
------------------------------------------------------------------------ ------------------------------------------------------------------------
BUILDING: BUILDING:
$ ./configure --prefix=/usr/local $ runhaskell Setup.hs configure --prefix=/usr/local
$ make $ runhaskell Setup.hs build
$ make install $ runhaskell Setup.hs install
------------------------------------------------------------------------ ------------------------------------------------------------------------
@ -45,7 +45,10 @@ DEPENDENCIES:
darcs get http://www.cs.chalmers.se/~d00nibro/haskell-src-exts darcs get http://www.cs.chalmers.se/~d00nibro/haskell-src-exts
To get hs-plugins to use HSX, use the --enable-hsx to ./configure. To get hs-plugins to use HSX, use:
$ runhaskell Setup.hs configure --enable-hsx
Make sure to install HSX first though :) Make sure to install HSX first though :)
------------------------------------------------------------------------ ------------------------------------------------------------------------