summaryrefslogtreecommitdiff
path: root/Makefile.reconf_args
blob: 516ae0adbc6bc3856582de8f2932375169814239 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*-makefile-*-
# This makefile snippet maps make-time arguments to configure and
# build-type arguments
#
# Morgan Deters <mdeters@cs.nyu.edu> 2009 for CVC4
BTARGS =
CONFARGS =

ifeq ($(OPTIMIZE),0)
  BTARGS += noopt
  CONFARGS += --disable-optimized
else
ifeq ($(OPTIMIZE),1)
  BTARGS += opt
  CONFARGS += --enable-optimized
endif
endif

ifeq ($(DEBUG_SYMBOLS),0)
  BTARGS += nodsy
  CONFARGS += --disable-debug-symbols
else
ifeq ($(DEBUG_SYMBOLS),1)
  BTARGS += dsy
  CONFARGS += --enable-debug-symbols
endif
endif

ifeq ($(ASSERTIONS),0)
  BTARGS += noass
  CONFARGS += --disable-assertions
else
ifeq ($(ASSERTIONS),1)
  BTARGS += ass
  CONFARGS += --enable-assertions
endif
endif

ifeq ($(TRACING),0)
  BTARGS += notrc
  CONFARGS += --disable-tracing
else
ifeq ($(TRACING),1)
  BTARGS += trc
  CONFARGS += --enable-tracing
endif
endif

ifeq ($(MUZZLE),0)
  BTARGS += nomzl
  CONFARGS += --disable-muzzle
else
ifeq ($(MUZZLE),1)
  BTARGS += mzl
  CONFARGS += --enable-muzzle
endif
endif

ifeq ($(COVERAGE),0)
  BTARGS += nocvg
  CONFARGS += --disable-coverage
else
ifeq ($(COVERAGE),1)
  BTARGS += cvg
  CONFARGS += --enable-coverage
endif
endif

ifeq ($(PROFILING),0)
  BTARGS += noprf
  CONFARGS += --disable-profiling
else
ifeq ($(PROFILING),1)
  BTARGS += prf
  CONFARGS += --enable-profiling
endif
endif

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback