9 lines
112 B
Makefile
9 lines
112 B
Makefile
|
SOURCES := noise.cc test.cc util.cc
|
||
|
|
||
|
noise: $(SOURCES)
|
||
|
g++ -o $@ $(SOURCES)
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -f noise
|