sandbox/misc/noise/Makefile

9 lines
112 B
Makefile
Raw Normal View History

2019-02-17 00:50:56 +00:00
SOURCES := noise.cc test.cc util.cc
noise: $(SOURCES)
g++ -o $@ $(SOURCES)
.PHONY: clean
clean:
rm -f noise