sandbox/misc/noise/Makefile

9 lines
112 B
Makefile

SOURCES := noise.cc test.cc util.cc
noise: $(SOURCES)
g++ -o $@ $(SOURCES)
.PHONY: clean
clean:
rm -f noise