Makefile (140B)
1 CXX ?= g++ 2 .PHONY: clean 3 4 main: main.cpp factorial.o 5 $(CXX) -o $@ -g -O0 $^ 6 7 %.o: %.cpp 8 $(CXX) -o $@ -g -O0 -c $< 9 10 clean: 11 rm -f main *.o
cs107-lecture-examplesExample codes used during Harvard CS107 lectures | |
| git clone https://git.0xfab.ch/cs107-lecture-examples.git | |
| Log | Files | Refs | README | LICENSE |