1 | # -------------------------------------------------------------------------------- -*-Mode: Makefile;-*- (emacs) |
---|
2 | # If this file is named config.makefile.template then copy it to config.makefile |
---|
3 | # DO NOT EDIT config.makefile.template |
---|
4 | # -------------------------------------------------------------------------------- |
---|
5 | |
---|
6 | # Enter your name (upper case, no spaces) here, to enable '#ifdef DEVEL_YOURNAME #endif' sections |
---|
7 | # (Release version uses 'RELEASE') |
---|
8 | DEVELOPER := ANY |
---|
9 | |
---|
10 | DEBUG := 0# build with debug information |
---|
11 | DEBUG_GRAPHICS := 0# force instant graphic update |
---|
12 | STABS := 0# force stabs format? |
---|
13 | |
---|
14 | TRACESYM := 1# insert symbols for meaningful backtraces into executables |
---|
15 | |
---|
16 | # Include features using OPENGL? |
---|
17 | OPENGL := 0 |
---|
18 | |
---|
19 | # 0 = use old PTSERVER (recommended) |
---|
20 | # 1 = use the new PTPan implementation as pt-server (Not tested very well, do NOT use!) |
---|
21 | # 2 = compile both, use old (recommended for development only) |
---|
22 | PTPAN := 0 |
---|
23 | |
---|
24 | ARB_64 := 1# compile 64bit ARB version |
---|
25 | #BUILDHOST_64 := 1# whether build host is 64bit (value defaults to ARB_64). Needed for cross-compile |
---|
26 | |
---|
27 | UNIT_TESTS := 0# include and perform unit tests |
---|
28 | COVERAGE := 0# gcov support (0=off,1=on,2=on but hidden) |
---|
29 | #SANITIZE := all# build with Sanitizer? (defaults to 0; see Makefile for details) |
---|
30 | #SHOWTODO := 0# show todos? (defaults to 0, depends on DEVELOPER) |
---|
31 | |
---|
32 | # -------------------------------------------------------------------------------- |
---|
33 | # target machine section |
---|
34 | # [Note: Uncomment one section, depending on your machine type and compiler options] |
---|
35 | |
---|
36 | # ------------ |
---|
37 | # Section: Linux |
---|
38 | |
---|
39 | MACH := LINUX# Linux g++ and gcc |
---|
40 | LINUX := 1 |
---|
41 | |
---|
42 | # DEBIAN := 1# uncomment for DEBIAN systems |
---|
43 | # REDHAT := 1# uncomment for REDHAT systems |
---|
44 | |
---|
45 | # ------------ |
---|
46 | # Section: Mac OSX |
---|
47 | |
---|
48 | # MACH := DARWIN# |
---|
49 | # DARWIN := 1 |
---|
50 | |
---|
51 | # ------------ |
---|