################################################################ # # 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? export RENDER_GL = yes # Do you want to use the Performer-based renderer? export RENDER_PF = ################ # # Define the OS to compile for and the compiler to use. OS = Linux C++ = g++ ################ # # Define the C++ compiler flags C++FLAGS = -O2 -Wall ######### LEDA Configuration LEDAINC = -I/usr/local/LEDA-3.8-linux-g++.s/include LEDALIB = -L/usr/local/LEDA-3.8-linux-g++.s/lib -lD3 -lW -lP -lG -lL LEDAFLAGS = -DLEDA_PREFIX ######### PQP Configuration PQPINC = -I/course/cs576/c/msl-1.2/include PQPLIB = -L/course/cs576/c/msl-1.2/lib -lPQP PQPFLAGS = ######### X11 Configuration XINC = -I/usr/X11R6/include XLIB = -L/usr/X11R6/lib -lX11 -lXmu ######## GL Configuration GLINC = -I/course/cs576/c/msl-1.2/include GLLIB = -L/usr/lib -lglut -lGLU -lGL GLFLAGS = ######## Performer Configuration PFINC = -I/usr/X11R6/include PFLIB = -L/usr/X11R6/lib -lpfdu_ogl -lpfui -lpfuiD -lpfutil_ogl -lpf_ogl -ldl PFFLAGS = -g ######### Others OTHERINC = -I../include OTHERLIB = -L../lib -lm