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