mirror of
https://github.com/aicodix/code.git
synced 2026-04-27 14:30:36 +00:00
15 lines
255 B
Makefile
15 lines
255 B
Makefile
|
|
CXXFLAGS = -I.. -std=c++17 -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
|
|
|