SOURCES :=	noise.cc test.cc util.cc

noise: $(SOURCES)
	g++ -o $@ $(SOURCES)

.PHONY: clean
clean:
	rm -f noise
