aicodix___dsp/tests/Makefile
2018-10-25 08:57:58 +02:00

15 lines
255 B
Makefile

CXXFLAGS = -I.. -std=c++11 -W -Wall -Ofast -fno-exceptions -fno-rtti -march=native
CXX = clang++ -stdlib=libc++
#CXX = g++
.PHONY: clean test
tests := $(basename $(wildcard *_test.*))
test: $(tests)
$(patsubst %,./%;,$(tests))
clean:
rm -f *_test