1 | # -------------------------------------------------------------------------------- -*-Mode: Makefile;-*- (emacs) |
---|
2 | # config.makefile = configuration used to build arb (EDIT THAT FILE) |
---|
3 | # config.makefile.template = default for config.makefile |
---|
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 | OPENGL := 0# Include features using OPENGL? |
---|
10 | |
---|
11 | # -------------------------------------------------------------------------------- |
---|
12 | # developer section (everybody else should use defaults) |
---|
13 | |
---|
14 | DEBUG := 0# build with debug information |
---|
15 | |
---|
16 | UNIT_TESTS := 0# include and perform unit tests |
---|
17 | COVERAGE := 0# gcov support (0=off(=default),1=on,2=on but hidden) |
---|
18 | |
---|
19 | #SANITIZE := all# build with Sanitizer? (defaults to 0; see Makefile for details) |
---|
20 | #IGNORE_LEAKS := 1# ignore found leaks (defaults to 0; applies only to SANITIZE=1/all) |
---|
21 | #SHOWTODO := 0# show todos? (defaults to 0, depends on DEVELOPER) |
---|
22 | |
---|
23 | # better do not change the following settings: |
---|
24 | STABS := 0# force stabs format? (not recommended; affects SANITIZE stackdump locations) |
---|
25 | TRACESYM := 1# insert symbols for meaningful backtraces into executables |
---|
26 | DEBUG_GRAPHICS := 0# force instant graphic update |
---|
27 | ARB_64 := 1# compile 64bit ARB version (32bit version no longer supported) |
---|
28 | |
---|
29 | # -------------------------------------------------------------------------------- |
---|
30 | # target machine section |
---|
31 | # [Note: Uncomment one section, depending on your machine type and compiler options] |
---|
32 | |
---|
33 | # ------------ |
---|
34 | # Section: Linux |
---|
35 | |
---|
36 | MACH := LINUX |
---|
37 | LINUX := 1 |
---|
38 | |
---|
39 | # DEBIAN := 1# used by maintainer only |
---|
40 | |
---|
41 | # ------------ |
---|
42 | # Section: Mac OSX |
---|
43 | |
---|
44 | # MACH := DARWIN |
---|
45 | # DARWIN := 1 |
---|
46 | |
---|
47 | # ------------ |
---|