1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/haskell/Makefile

32 lines
733 B
Makefile
Raw Normal View History

SOURCES_BASE = Readline.hs Types.hs Reader.hs Printer.hs
SOURCES_LISP = Env.hs Core.hs step9_try.hs
2014-12-24 06:35:48 +03:00
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
#####################
SRCS = step0_repl.hs step1_read_print.hs step2_eval.hs step3_env.hs \
2014-12-24 09:49:23 +03:00
step4_if_fn_do.hs step5_tco.hs step6_file.hs step7_quote.hs \
step8_macros.hs step9_try.hs stepA_interop.hs
OTHER_SRCS = Readline.hs Types.hs Reader.hs Printer.hs Env.hs Core.hs
2014-12-24 06:35:48 +03:00
BINS = $(SRCS:%.hs=%)
#####################
all: $(BINS) mal
mal: $(word $(words $(BINS)),$(BINS))
cp $< $@
$(BINS): %: %.hs $(OTHER_SRCS)
ghc --make $< -o $@
clean:
rm -f $(BINS) mal *.hi *.o
.PHONY: stats stats-lisp tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^