diff options
| author | Joel Martin <github@martintribe.org> | 2014-04-09 22:15:54 -0500 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2014-04-09 22:15:54 -0500 |
| commit | edc3b0640f1b773e185550448e2086279f7b1a7f (patch) | |
| tree | de0a10a34027865c2afb0a6dc51fe5b0656d814b /cs | |
| parent | 17ae845ec1dc2c703f99d3cb9f5c01e1b5c52837 (diff) | |
| download | mal-edc3b0640f1b773e185550448e2086279f7b1a7f.tar.gz mal-edc3b0640f1b773e185550448e2086279f7b1a7f.zip | |
README: add C# info. Cleanup top Makefile.
Also, re-order impls into alphabetical order.
Diffstat (limited to 'cs')
| -rw-r--r-- | cs/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cs/Makefile b/cs/Makefile index 3236bd6..8d05ec0 100644 --- a/cs/Makefile +++ b/cs/Makefile @@ -1,5 +1,7 @@ ##################### +DEBUG = + TESTS = SOURCES = readline.cs types.cs reader.cs printer.cs env.cs core.cs \ @@ -15,7 +17,7 @@ SRCS = step0_repl.cs step1_read_print.cs step2_eval.cs step3_env.cs \ LIB_SRCS = $(filter-out step%,$(OTHER_SOURCES) $(SOURCES)) -FLAGS = -debug+ +FLAGS = $(if $(strip $(DEBUG)),-debug+,) ##################### |
