12 lines
214 B
Makefile
12 lines
214 B
Makefile
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
|