mirror of
https://github.com/aicodix/code.git
synced 2026-04-27 22:35:44 +00:00
moved crc and xorshift from DSP to CODE repository
This commit is contained in:
commit
ee79ff2b2d
8 changed files with 292 additions and 0 deletions
15
tests/Makefile
Normal file
15
tests/Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue