# -------------------------------------------------------------------------------- -*-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 STABS := 0# force stabs format? (not recommended; affects SANITIZE stackdump locations) TRACESYM := 1# insert symbols for meaningful backtraces into executables # Include features using OPENGL? OPENGL := 0 # compile 64bit ARB version (32bit may work, but is rarely tested) ARB_64 := 1 UNIT_TESTS := 0# include and perform unit tests COVERAGE := 0# gcov support (0=off(=default),1=on,2=on but hidden) #SANITIZE := all# build with Sanitizer? (defaults to 0; see Makefile for details) #SHOWTODO := 0# show todos? (defaults to 0, depends on DEVELOPER) # -------------------------------------------------------------------------------- # target machine section # [Note: Uncomment one section, depending on your machine type and compiler options] # ------------ # Section: Linux MACH := LINUX# LINUX := 1 # DEBIAN := 1# uncomment for DEBIAN systems (not recommended) # REDHAT := 1# uncomment for REDHAT systems # ------------ # Section: Mac OSX # MACH := DARWIN# # DARWIN := 1 # ------------