Makefile 119 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 all: g++ -c main.cpp fft.cpp wavdata.cpp g++ -o clavier main.o fft.o wavdata.o clean: rm -f core *.o clavier