-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.config.in~
More file actions
81 lines (59 loc) · 1.85 KB
/
Makefile.config.in~
File metadata and controls
81 lines (59 loc) · 1.85 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
################################################################
#
# This is the configurable part of the Makefile.
# It must be named 'Makefile.config'.
#
#
################################################################
################
#
# For each conditional install option, either fill in "yes" or leave
# blank to indicate no.
# Do you want to use the GL-based renderer?
@RENDER_GL@
# Do you want to use the Performer-based renderer?
@RENDER_PF@
# Do you want to use the OpenInventor-based renderer?
@RENDER_IV@
################
#
# Define the OS to compile for and the compiler to use.
OS = @TARGET@
C++ = @CXX@
################
#
# Define the C++ compiler flags
C++FLAGS = -g -Wall
LDFLAGS = @LDFLAGS@
CPPFLAGS = @CPPFLAGS@
######### FOX Configuration
#FOXINC = @FOX_INC_F@
#FOXLIB = @FOX_LIB_F@ @PNG_LIB_F@ @JPEG_LIB_F@ -lFOX -ljpeg -lpng
FOXLIB = -lFOX -ljpeg -lpng
FOXFLAGS = -DTIME_WITH_SYS_TIME=1 -DHAVE_UNISTD_H=1 -DHAVE_DIRENT_H=1 -DHAVE_SYS_PARAM_H=1 -DHAVE_SYS_SELECT_H=1 -DHAVE_ZLIB_H=1 -DHAVE_JPEGLIB_H=1 -DHAVE_PNG_H=1 -DHAVE_OPENGL -DHAVE_JPEG
######### PQP Configuration
#PQPINC = @INCPQP@
#PQPLIB = @LDPQP@ -lPQP
#PQPLIB = -lPQP
#PQPFLAGS =
######### X11 Configuration
XINC=@XINC@
XLIB=@XLIB@ -lX11 -lXmu -lXext -lXi
######## GL Configuration
#GLINC = @GL_INC_F@ @GLUT_INC_F@
#GLLIB = @GL_LIB_F@ @GLUT_LIB_F@ -lglut -lGLU -lGL
GLLIB = -lglut -lGLU -lGL
GLFLAGS =
######## Performer Configuration
#PFINC = @PF_INC_F@
#PFLIB = @PF_LIB_F@ -lpfdu -lpfui -lpfuiD -lpfutil -lpf -ldl
PFLIB = -lpfdu -lpfui -lpfuiD -lpfutil -lpf -ldl
PFFLAGS = -g
######## OpenInventor Configuration
#IVINC = @IV_INC_F@
#IVLIB = @IV_LIB_F@ -lInventor -lInventorXt -lXm -lGLU -lGL -ldl -lXaw
IVLIB = -lInventor -lInventorXt -lXm -lGLU -lGL -ldl -lXaw
IVFLAGS = -DPOSIX_SOURCE -D_XOPEN_SOURCE
######### Others
OTHERINC = -I../include
OTHERLIB = -L../lib -lm