Initial release
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
CXX ?= g++
|
||||
CXXFLAGS ?= -std=c++17 -O2
|
||||
INCLUDES = -I../src
|
||||
|
||||
test-philox: test-philox.cpp ../src/philox.h
|
||||
$(CXX) $(CXXFLAGS) $(INCLUDES) -o $@ $< -lm
|
||||
|
||||
clean:
|
||||
rm -f test-philox philox-noise.f32
|
||||
|
||||
.PHONY: clean
|
||||
Reference in New Issue
Block a user