From: Wolfgang T. <wth...@us...> - 2005-07-27 02:54:02
|
Update of /cvsroot/hoc/hoc/Samples/Editor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16498 Modified Files: Makefile Log Message: Use $(GHC) environment variable Index: Makefile =================================================================== RCS file: /cvsroot/hoc/hoc/Samples/Editor/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 31 Mar 2005 15:46:49 -0000 1.4 +++ Makefile 27 Jul 2005 02:53:54 -0000 1.5 @@ -14,7 +14,7 @@ Editor: *.hs mkdir -p build - ghc --make -fglasgow-exts Main.hs -odir build -hidir build -O -o Editor + $(GHC) --make -fglasgow-exts Main.hs -odir build -hidir build -O -o Editor interpret: mkdir -p build @@ -24,6 +24,6 @@ nolink: mkdir -p build - ghc --make -fglasgow-exts Main.hs -odir build -hidir build -O -pgml true + $(GHC) --make -fglasgow-exts Main.hs -odir build -hidir build -O -pgml true clean: rm -rf build Editor Editor.app 'Interpreted Haskell Application.app/' |