Update of /cvsroot/hoc/hoc/Samples/Editor
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv19794/Samples/Editor
Modified Files:
Makefile
Log Message:
Update for GHC 6.6
Index: Makefile
===================================================================
RCS file: /cvsroot/hoc/hoc/Samples/Editor/Makefile,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Makefile 27 Jul 2005 02:53:54 -0000 1.5
+++ Makefile 1 Nov 2006 15:45:05 -0000 1.6
@@ -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 -fth 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 -fth Main.hs -odir build -hidir build -O -pgml true
clean:
rm -rf build Editor Editor.app 'Interpreted Haskell Application.app/'
|