diff options
Diffstat (limited to 'racket/Makefile')
| -rw-r--r-- | racket/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/racket/Makefile b/racket/Makefile new file mode 100644 index 0000000..a472c2f --- /dev/null +++ b/racket/Makefile @@ -0,0 +1,12 @@ +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 $^ |
