Subversion Repositories DevTools

Rev

Rev 3967 | Rev 4781 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3967 Rev 4778
Line 10... Line 10...
10
SCM_PLATFORM	= $(GBE_PLATFORM)
10
SCM_PLATFORM	= $(GBE_PLATFORM)
11
 
11
 
12
#
12
#
13
###############################################################################
13
###############################################################################
14
# Common definitions extracted from OPTIONS
14
# Common definitions extracted from OPTIONS
-
 
15
#   CC_PRE      - Verbosity control: Compiler commands. Show on args, allargs
-
 
16
#   XX_PRE      - Verbosity control: General commands.  Show on args, allargs
-
 
17
#   AA_PRE      - Verbosity control: Internal commands. Only display for allargs
-
 
18
#
-
 
19
#   SHOWARGS    - Argument Showing Level: NONE, ALL, ARGS
-
 
20
#   VERBOSE_OPT - Verbosity option suitable for jats commands
15
##############################################################################
21
##############################################################################
16
#
22
#
17
CC_PRE      := @
23
CC_PRE      := @
18
XX_PRE      := @
24
XX_PRE      := @
19
AA_PRE      := @
25
AA_PRE      := @
20
 
26
 
21
SHOWARGS    := NONE
27
SHOWARGS    := NONE
-
 
28
VERBOSE_OPT :=
22
 
29
 
23
USE_FILTER  := 1
30
USE_FILTER  := 1
24
LEAVETMP    :=
31
LEAVETMP    :=
25
SHOWENV     :=
32
SHOWENV     :=
26
 
33
 
Line 28... Line 35...
28
 
35
 
29
ifneq "$(findstring args,$(OPTIONS))" ""        # Show arguments (default)
36
ifneq "$(findstring args,$(OPTIONS))" ""        # Show arguments (default)
30
CC_PRE :=
37
CC_PRE :=
31
XX_PRE :=
38
XX_PRE :=
32
SHOWARGS := ARGS
39
SHOWARGS := ARGS
-
 
40
VERBOSE_OPT := -verbose
33
endif
41
endif
34
 
42
 
35
ifneq "$(findstring noargs,$(OPTIONS))" ""      # Show no arguments
43
ifneq "$(findstring noargs,$(OPTIONS))" ""      # Show no arguments
36
CC_PRE := @
44
CC_PRE := @
37
XX_PRE := @
45
XX_PRE := @
38
SHOWARGS := NONE
46
SHOWARGS := NONE
-
 
47
VERBOSE_OPT :=
39
endif
48
endif
40
 
49
 
41
ifneq "$(findstring allargs,$(OPTIONS))" ""     #  Show ALL arguments
50
ifneq "$(findstring allargs,$(OPTIONS))" ""     #  Show ALL arguments
42
AA_PRE :=
51
AA_PRE :=
43
SHOWARGS := ALL
52
SHOWARGS := ALL
-
 
53
VERBOSE_OPT := -verbose=3
44
endif
54
endif
45
 
55
 
46
ifneq "$(findstring filter,$(OPTIONS))" ""      # Use filter (Default)
56
ifneq "$(findstring filter,$(OPTIONS))" ""      # Use filter (Default)
47
USE_FILTER := 1
57
USE_FILTER := 1
48
endif
58
endif