school/cs142/smcquay/lab03/Makefile

11 lines
162 B
Makefile
Raw Normal View History

2016-04-06 20:45:34 -07:00
CXXFLAGS=-Wall -g -std=c++0x
all: grade
test: grade
./grade < test.txt
./grade -n < test.txt
./grade -p < test.txt
clean:
@rm -vf grade
@rm -rvf grade.dSYM