-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.makefile.template
51 lines (37 loc) · 1.75 KB
/
config.makefile.template
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
# -------------------------------------------------------------------------------- -*-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
# ------------