1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/racket/Makefile
Joel Martin f522319598 Racket: add steps0-A. Self-hosting.
- Some additioanl tests.
- Split step9 tests into optional but self-hosting requirements
  (metadata on functions) and other optional (conj, metadata on
  collections).
2015-01-09 16:16:55 -06:00

13 lines
224 B
Makefile

SOURCES_BASE = types.rkt reader.rkt printer.rkt
SOURCES_LISP = env.rkt core.rkt stepA_interop.rkt
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
all:
.PHONY: stats
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^