[project @ 1997-05-18 23:02:22 by sof]
authorsof <unknown>
Sun, 18 May 1997 23:02:22 +0000 (23:02 +0000)
committersof <unknown>
Sun, 18 May 1997 23:02:22 +0000 (23:02 +0000)
(partially) updated for new Makefile setup

ghc/compiler/tests/deSugar/Makefile

index e6dc793..829a772 100644 (file)
@@ -1,17 +1,22 @@
 TOP = ../../..
 include $(TOP)/mk/boilerplate.mk
 
-runtests :: $(patsubst %.hs, %.runtest, $(wildcard *.hs))
+SRCS = $(wildcard *.hs)
+HS_PROG = ds040
+
+PROG : $(SRCS)
+
+runtests :: $(wildcard *.hs)
        @echo 'TODO: ds014a -- some things that should NOT go through'
 
 #SUBDIRS = cvh-ds-unboxed
 
 # These options apply to all tests
-RUN_TEST_OPTS = -noC -ddump-ds -dcore-lint
+HC_OPTS += -noC -ddump-ds -dcore-lint
 
-ds030_flags = -dppr-all
-ds035_flags = -fglasgow-exts
-ds039_flags = -dppr-all
+ds030_HC_OPTS = -dppr-all
+ds035_HC_OPTS = -fglasgow-exts
+ds039_HC_OPTS = -dppr-all
 
 
 include $(TOP)/mk/target.mk