diff options
Diffstat (limited to 'ps')
| -rw-r--r-- | ps/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ps/Makefile b/ps/Makefile index fd5ca70..43b5b70 100644 --- a/ps/Makefile +++ b/ps/Makefile @@ -1,12 +1,16 @@ TESTS = -SOURCES = types.ps reader.ps printer.ps env.ps core.ps stepA_more.ps +SOURCES_BASE = types.ps reader.ps printer.ps +SOURCES_LISP = env.ps core.ps stepA_more.ps +SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) .PHONY: stats tests $(TESTS) stats: $(SOURCES) @wc $^ +stats-lisp: $(SOURCES_LISP) + @wc $^ tests: $(TESTS) |
