bbc-basic: Slight tweak to heap size.
[jackhill/mal.git] / nasm / Makefile
index bb690ea..a3cf08c 100644 (file)
@@ -15,18 +15,3 @@ all: $(STEPS)
 .PHONY: clean
 clean:
        rm -f $(STEPS) $(STEPS:%=%.o)
-
-######################
-
-SOURCES_BASE = reader.asm printer.asm types.asm system.asm exceptions.asm
-SOURCES_LISP = env.asm core.asm stepA_mal.asm
-SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
-
-.PHONY: stats stats-lisp
-
-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]"