From: Andre P. <at...@us...> - 2005-04-01 04:35:46
|
Update of /cvsroot/hoc/hoc/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31208 Modified Files: Makefile Log Message: Don't build TestFoundation.dynamic, since we don't compile Foundation as a dynamic lib right now Index: Makefile =================================================================== RCS file: /cvsroot/hoc/hoc/Tests/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 1 Apr 2005 03:00:06 -0000 1.1 +++ Makefile 1 Apr 2005 04:35:29 -0000 1.2 @@ -1,5 +1,4 @@ -check: TestFoundation.dynamic TestFoundation.static - ./TestFoundation.dynamic +check: TestFoundation.static ./TestFoundation.static build: @@ -11,12 +10,12 @@ TestFoundation.dynamic: build TestFoundation.hs ghc -dynamic -odir build/dynamic/objects -hidir build/dynamic/imports \ -o $@ -fglasgow-exts -package-conf ../inplace.conf \ - -package Foundation --make $< + -package Foundation --make TestFoundation.hs TestFoundation.static: build TestFoundation.hs ghc -odir build/static/objects -hidir build/static/imports \ -o $@ -fglasgow-exts -package-conf ../inplace.conf \ - -package Foundation --make $< + -package Foundation --make TestFoundation.hs clean: -rm *.o *.hi TestFoundation |