From: Andre P. <at...@us...> - 2005-04-01 04:03:34
|
Update of /cvsroot/hoc/hoc/Samples/UniqSort In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14908 Modified Files: Makefile Log Message: Add a uniqsort.stripped target that's built with dead code stripping, Just For Fun Index: Makefile =================================================================== RCS file: /cvsroot/hoc/hoc/Samples/UniqSort/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile 31 Mar 2005 15:46:51 -0000 1.3 +++ Makefile 1 Apr 2005 04:03:25 -0000 1.4 @@ -11,6 +11,9 @@ uniqsort: UniqSort.hs ghc -o $@ --make $< +uniqsort.stripped: UniqSort.hs + ghc -o $@ --make -optl-Wl,-dead_strip $< + clean: -rm uniqsort *.o *.hi |