X-Git-Url: https://git.rohieb.name/MicroTrace.git/blobdiff_plain/3396a44710415bde9509afeb02f3ec10a22c6661..a8137256e983a49f97ff1fbecd26a1a0372f7b0b:/Makefile diff --git a/Makefile b/Makefile index f263909..ac86170 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: MicroTrace CC = g++ -CFLAGS = -O3 -Wall +CFLAGS = -O3 -Wall -fopenmp OBJ = MicroTrace.o\ @@ -24,7 +24,10 @@ OBJ = MicroTrace.o\ PointLight.o\ SpotLight.o\ Scene.o\ - Primitive.o + Primitive.o\ + QuadAreaLight.o\ + Box.o\ + kDTree.o %.o: %.cxx *.hxx $(CC) $(CFLAGS) -c $< -o $@ @@ -35,6 +38,6 @@ OBJ = MicroTrace.o\ MicroTrace: $(OBJ) - + g++ -fopenmp $(OBJ) -o MicroTrace clean: rm *~ *.o *.a MicroTrace