# --------------------------------------------------------------------------------                                         -*-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?

TRACESYM := 1# insert symbols for meaningful backtraces into executables 

# Include features using OPENGL? 
OPENGL := 0

# 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 := 1# compile 64bit ARB version
#BUILDHOST_64 := 1# whether build host is 64bit (value defaults to ARB_64). Needed for cross-compile

UNIT_TESTS := 0# include and perform unit tests
COVERAGE := 0# gcov support (0=off,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 g++  and gcc
LINUX := 1

# DEBIAN := 1# uncomment for DEBIAN systems
# REDHAT := 1# uncomment for REDHAT systems

# ------------
# Section: Mac OSX

# MACH   := DARWIN#
# DARWIN := 1

# ------------