6 lines
59 B
Makefile
6 lines
59 B
Makefile
main:Main.cc
|
|
g++ -o $@ $^
|
|
|
|
.PHONY:clean
|
|
clean:
|
|
rm -f main
|