DISABLE FDs (REMOVE ME).
[jackhill/mal.git] / ada / Makefile
1 PROGS=step0_repl step1_read_print step2_eval step3_env step4_if_fn_do \
2 step5_tco step6_file step7_quote step8_macros step9_try
3
4 all: ${PROGS} stepA_mal
5
6 obj:
7 mkdir -p $@
8
9 # stepA_mal is awkward because GNAT requires the filename to be lowercase
10 ${PROGS} stepa_mal: force obj
11 gnatmake -O3 -gnata $@.adb -D obj
12
13 # so we make stepa_mal and just move it.
14 stepA_mal: stepa_mal
15 mv $< $@
16
17 clean:
18 rm -f ${PROGS}
19 rm -rf obj
20
21 .PHONY: force
22
23 force: