mirror of
https://github.com/aicodix/dsp.git
synced 2026-04-27 14:30:36 +00:00
13 lines
171 B
Makefile
13 lines
171 B
Makefile
|
|
CXXFLAGS = -I.. -std=c++11 -W -Wall -O3 -march=native -ffast-math
|
|
CXX = clang++ -stdlib=libc++
|
|
#CXX = g++
|
|
|
|
.PHONY: clean test
|
|
|
|
test: kahan
|
|
./kahan
|
|
|
|
clean:
|
|
rm -f kahan
|
|
|