11 lines
162 B
Makefile
11 lines
162 B
Makefile
|
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
|