aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--forth/Makefile10
1 files changed, 10 insertions, 0 deletions
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 $^