From bf8237d5ee3f1cbb3a3a7eb9d5094720361c46bf Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Wed, 25 Feb 2015 22:24:34 -0600 Subject: forth: add Makefile for stats. --- forth/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 forth/Makefile diff --git a/forth/Makefile b/forth/Makefile new file mode 100644 index 0000000..400b463 --- /dev/null +++ b/forth/Makefile @@ -0,0 +1,10 @@ +SOURCES_BASE = types.fs str.fs reader.fs printer.fs +SOURCES_LISP = env.fs core.fs stepA_interop.fs +SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) + +.PHONY: stats tests $(TESTS) + +stats: $(SOURCES) + @wc $^ +stats-lisp: $(SOURCES_LISP) + @wc $^ -- cgit v1.2.3