# -------------------------------------------------------------------------------- -*-Mode: Makefile;-*- (emacs) # config.makefile = configuration used to build arb (EDIT THAT FILE) # config.makefile.template = default for config.makefile # -------------------------------------------------------------------------------- # Enter your name (upper case, no spaces) here, to enable '#ifdef DEVEL_YOURNAME #endif' sections # (Release version uses 'RELEASE') DEVELOPER := ANY # feature toggles: OPENGL := 0# Include features using OPENGL? # ISINA := 1# Build included SINA version 1.7.2 (patched)? Default: 0 for OSX, 1 for Linux with gcc>=7 # -------------------------------------------------------------------------------- # developer section (everybody else should use defaults) DEBUG := 0# build with debug information 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) #IGNORE_LEAKS := 1# ignore found leaks (defaults to 0; applies only to SANITIZE=1/all) #SHOWTODO := 0# show todos? (defaults to 0, depends on DEVELOPER) # better do not change the following settings: STABS := 0# force stabs format? (not recommended; affects SANITIZE stackdump locations) TRACESYM := 1# insert symbols for meaningful backtraces into executables DEBUG_GRAPHICS := 0# force instant graphic update ARB_64 := 1# compile 64bit ARB version (32bit version no longer supported) # -------------------------------------------------------------------------------- # target machine section # [Note: Uncomment one section, depending on your machine type and compiler options] # ------------ # Section: Linux MACH := LINUX LINUX := 1 # DEBIAN := 1# used by maintainer only # ------------ # Section: Mac OSX # MACH := DARWIN # DARWIN := 1 # ------------