projects/07/Makefile
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# nand2tetris chapter 6 VM translator makefile # for debugging this makefile: `make -d` CFLAGS = -std=c99 -Wall -Wextra all: bin/vmtranslator # TODO: clean up, make more Makefile-idiomatic bin/vmtranslator: src/vmtranslator.c $(CC) $(CFLAGS) -o $@ $< clean: rm -vf bin/* .PHONY: clean |