1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-19 01:28:26 +03:00
mal/racket/Makefile
2019-03-20 23:34:21 -05:00

15 lines
230 B
Makefile

SOURCES_BASE = types.rkt reader.rkt printer.rkt
SOURCES_LISP = env.rkt core.rkt stepA_mal.rkt
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
all:
dist: mal
mal: $(SOURCES)
raco exe stepA_mal.rkt
mv stepA_mal $@
clean:
rm -f mal