-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
33 lines (32 loc) · 711 Bytes
/
makefile
File metadata and controls
33 lines (32 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
all:
g++ -Wzero-as-null-pointer-constant -c -I ../TopologicalPredicates \
AttributedHalfSegment2D.cpp \
EventPoint.cpp \
HalfSegment2D.cpp \
Line2D.cpp \
Number.cpp \
ParallelObjTraversal.cpp \
PlaneSweep.cpp \
VerifyPredicate.cpp \
main.cpp \
Point2D.cpp \
Region2D.cpp \
Segment2D.cpp \
SimplePoint2D.cpp
g++ AttributedHalfSegment2D.o \
EventPoint.o \
HalfSegment2D.o \
Line2D.o \
Number.o \
ParallelObjTraversal.o \
PlaneSweep.o \
VerifyPredicate.o \
main.o \
Point2D.o \
Region2D.o \
Segment2D.o \
SimplePoint2D.o
ar crf ../TopologicalPredicates/libTopologicalPredicates.a *.o
g++ main.cpp -lTopologicalPredicates.a -lgmp -lgmpxx -o test
clean:
rm *.o