# -------------------------------------------------------------------------------- -*-Mode: Makefile;-*- (emacs) # If this file is named config.makefile.template then copy it to config.makefile # DO NOT EDIT config.makefile.template # -------------------------------------------------------------------------------- # Enter your name (upper case, no spaces) here, to enable '#ifdef DEVEL_YOURNAME #endif' sections # (Release version uses 'RELEASE') DEVELOPER := ANY DEBUG := 0# build with debug information DEBUG_GRAPHICS := 0# force instant graphic update TRACESYM := 1# insert symbols for meaningful backtraces into executables # Include features using OPENGL? OPENGL := 1 # 0 = use old PTSERVER (recommended) # 1 = use the new PTPan implementation as pt-server (Not tested very well, do NOT use!) # 2 = compile both, use old (recommended for development only) PTPAN := 0 ARB_64 := 0# compile 64bit ARB version #BUILDHOST_64 := 1# whether build host is 64bit (value defaults to ARB_64). Needed for cross-compile # -------------------------------------------------------------------------------- # target machine section # [Note: Uncomment one section, depending on your machine type and compiler options] # ------------ # Section: Linux MACH := LINUX# Linux g++ and gcc LINUX := 1 # DEBIAN := 1 # uncomment for DEBIAN systems # REDHAT := 1 # uncomment for REDHAT systems # ------------ # Section: Mac OSX # MACH := DARWIN# # DARWIN := 1 # ------------