forked from kanaka/mal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
63 lines (44 loc) · 1.65 KB
/
Makefile
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#####################
DEBUG =
TESTS =
SOURCES_BASE = types.fs error.fs node.fs printer.fs tokenizer.fs reader.fs \
readline.fs
SOURCES_LISP = core.fs env.fs stepA_mal.fs
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
TERMINAL_SOURCES = terminal.cs
#####################
SRCS = step0_repl.fs step1_read_print.fs step2_eval.fs step3_env.fs \
step4_if_fn_do.fs step5_tco.fs step6_file.fs step7_quote.fs \
step8_macros.fs step9_try.fs stepA_mal.fs
DLL_SOURCES = $(filter-out stepA_mal.fs,$(SOURCES))
FSFLAGS = $(if $(strip $(DEBUG)),--debug+,--debug- --optimize+ --tailcalls+)
CSFLAGS = $(if $(strip $(DEBUG)),-debug+,)
#####################
all: $(patsubst %.fs,%.exe,$(SRCS))
dist: mal.exe mal
mal.exe: stepA_mal.exe
cp $< $@
# NOTE/WARNING: static linking triggers mono libraries LGPL
# distribution requirements.
# http://www.mono-project.com/archived/guiderunning_mono_applications/
mal: $(patsubst %.fs,%.exe,$(word $(words $(SOURCES)),$(SOURCES))) Mono.Terminal.dll mal.dll
mkbundle --static -o $@ $+ --deps
Mono.Terminal.dll: $(TERMINAL_SOURCES)
mcs $(CSFLAGS) -target:library $+ -out:$@
mal.dll: $(DLL_SOURCES) Mono.Terminal.dll
fsharpc $(FSFLAGS) -o $@ -r Mono.Terminal.dll -a $(DLL_SOURCES)
%.exe: %.fs mal.dll
fsharpc $(FSFLAGS) -o $@ -r mal.dll $<
clean:
rm -f mal *.dll *.exe *.mdb
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
@printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
stats-lisp: $(SOURCES_LISP)
@wc $^
@printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
tests: $(TESTS)
$(TESTS):
@echo "Running $@"; \
./$@ || exit 1; \