This commit is contained in:
petterreinholdtsen 2025-09-07 18:24:27 +03:00 committed by GitHub
commit 2d0bcb6f44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
CPPFLAGS =
CFLAGS = -Wall -W -std=c++17 -O2
LDFLAGS =
all: ray_voxel
example: ray_voxel
ray_voxel motionimages/metadata.json motionimages voxel_grid.bin
ray_voxel:
$(CXX) $(CPPFLAGS) $(CFLAGS) ray_voxel.cpp -o ray_voxel
clean:
$(RM) ray_voxel