1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
ALEX=../dist/build/alex/alex
HC=ghc
.PRECIOUS: .hs .o .exe .bin
ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
HS_PROG_EXT = .exe
else
HS_PROG_EXT = .bin
endif
TESTS = simple.x tokens.x tokens_posn.x tokens_gscan.x
TEST_ALEX_OPTS = --template=..
%.n.hs : %.x
$(ALEX) $(TEST_ALEX_OPTS) $< -o $@
%.g.hs : %.x
$(ALEX) $(TEST_ALEX_OPTS) -g $< -o $@
%.o : %.hs
$(HC) $(HC_OPTS) -c -o $@ $<
CLEAN_FILES += *.n.hs *.g.hs *.info *.hi *.bin *.exe
ALL_TEST_HS = $(shell echo $(TESTS) | sed -e 's/\([^\. ]*\)\.\(l\)\{0,1\}x/\1.n.hs \1.g.hs/g')
ALL_TESTS = $(patsubst %.hs, %.run, $(ALL_TEST_HS))
HC_OPTS += -fglasgow-exts
%.run : %$(HS_PROG_EXT)
./$<
%$(HS_PROG_EXT) : %.o
$(HC) $(HC_OPTS) $($*_LD_OPTS) $< -o $@
all :: $(ALL_TESTS)
|