6 lines
65 B
Makefile
6 lines
65 B
Makefile
|
sources = guw.cc
|
||
|
|
||
|
guw : $(sources)
|
||
|
g++ -Wall -o guw $(sources)
|
||
|
|