[project @ 2000-12-12 13:27:18 by simonmar]
[ghc-hetmet.git] / ghc / tests / mk / should_compile.mk
1 #-----------------------------------------------------------------------------
2 # $Id: should_compile.mk,v 1.4 2000/11/03 16:23:38 simonmar Exp $
3 # template for should_compile tests.
4
5 HS_SRCS = $(wildcard *.hs)
6
7 SRC_RUNTEST_OPTS += -x 0 \
8         $(foreach i,$(wildcard $*.stdout),-o1 $(i)) \
9         $(foreach i,$(wildcard $*.stderr),-o2 $(i))
10
11 %.o : %.hs
12         @echo ---- Testing for successful compilation of $<
13         $(RUNTEST) $(HC) $(RUNTEST_OPTS) -- $(HC_OPTS) -c $< -o $@
14
15 all :: $(HS_OBJS)
16
17 # Most single-module tests are declared to be module ShouldCompile, so we
18 # can clean the .hi files in one go:
19 CLEAN_FILES += ShouldCompile.hi