all repos — nand2tetris @ 6b59b2d1aa8d1c2c01d77b7a7d383be5fcfb4adc

my nand2tetris progress

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