moved crc and xorshift from DSP to CODE repository

This commit is contained in:
Ahmet Inan 2018-09-20 08:36:45 +02:00
commit ee79ff2b2d
8 changed files with 292 additions and 0 deletions

15
tests/Makefile Normal file
View 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