make, swift3: fix parsing empty literal sequences.
[jackhill/mal.git] / rpython / Makefile
index a86b4dd..95a38ad 100644 (file)
@@ -4,10 +4,6 @@ RPYTHON = rpython
 UPPER_STEPS = step4_if_fn_do step5_tco step6_file step7_quote step8_macros step9_try stepA_mal
 STEPS = step0_repl step1_read_print step2_eval step3_env $(UPPER_STEPS)
 
-SOURCES_BASE = mal_readline.py mal_types.py reader.py printer.py
-SOURCES_LISP = env.py core.py stepA_mal.py
-SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
-
 all: $(STEPS)
 
 dist: mal
@@ -28,16 +24,9 @@ step1_read_print step2_eval: $(STEP1_DEPS)
 step3_env: $(STEP3_DEPS)
 $(UPPER_STEPS): $(STEP4_DEPS)
 
-.PHONY: clean stats stats-lisp
+.PHONY: clean
 
 clean:
        rm -f mal $(STEPS) *.pyc
        rm -rf __pycache__
 
-stats: $(SOURCES)
-       @wc $^
-       @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*#|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
-stats-lisp: $(SOURCES_LISP)
-       @wc $^
-       @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*#|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
-