Files
2026-08-16 18:24:52 +07:00

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