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

all: fft

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

install:

clean:
	rm -f fft

.PHONY: clean