From: Wolfgang T. <wth...@us...> - 2005-07-27 02:56:15
|
Update of /cvsroot/hoc/hoc/Samples/UniqSort In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16728/UniqSort Modified Files: Makefile Log Message: Use $(GHC) in Makefile Index: Makefile =================================================================== RCS file: /cvsroot/hoc/hoc/Samples/UniqSort/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 1 Apr 2005 04:03:25 -0000 1.4 +++ Makefile 27 Jul 2005 02:55:40 -0000 1.5 @@ -9,10 +9,10 @@ all: uniqsort uniqsort: UniqSort.hs - ghc -o $@ --make $< + $(GHC) -o $@ --make $< uniqsort.stripped: UniqSort.hs - ghc -o $@ --make -optl-Wl,-dead_strip $< + $(GHC) -o $@ --make -optl-Wl,-dead_strip $< clean: -rm uniqsort *.o *.hi |