Skip to content
This repository was archived by the owner on Aug 28, 2019. It is now read-only.

Commit f296695

Browse files
author
UncP
authored
Merge pull request #2 from choleraehyq/patch-1
Update Makefile
2 parents 1ad2a53 + e9f708c commit f296695

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CPP = g++
1+
CXX = g++
22
CPPFLAGS = -std=c++14 -Wall -O3 -fopenmp
33
LDFLAGS = -lpng
44

@@ -20,7 +20,7 @@ OBJ = math/constant.o math/vector.o math/point.o math/ray.o math/vertex.o m
2020
# object/triangle.o object/cube.oobject/disk.o \
2121
2222
Giraffe:$(OBJ) main/Giraffe.cpp
23-
$(CPP) $(CPPFLAGS) -o Giraffe $(OBJ) main/Giraffe.cpp $(LDFLAGS)
23+
$(CXX) $(CPPFLAGS) -o Giraffe $(OBJ) main/Giraffe.cpp $(LDFLAGS)
2424

2525
tag:
2626
ctags -R --sort=yes -f .tags

0 commit comments

Comments
 (0)