summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: f7d22c2bbaf7aaca191d1f2320c8d8cafd5dd568 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CXX=clang++-7

all: fft

fft: fft.cpp
	$(CXX) -Wall -std=c++17 -o $@ $^

install:

clean:
	rm -f fft

.PHONY: clean