ConsistentlyInconsistentYT-.../Makefile
Petter Reinholdtsen 5fbb1b50da Added simple makefile
The content is replicating the build rules in
examplebuildvoxelgridfrommotion.bat, adding compiler warnings.
2025-07-17 08:07:55 +02:00

14 lines
250 B
Makefile

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