Subversion Repositories DevTools

Rev

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

Rev 227 Rev 241
Line 17... Line 17...
17
#
17
#
18
CC_PRE      := @
18
CC_PRE      := @
19
XX_PRE      := @
19
XX_PRE      := @
20
AA_PRE      := @
20
AA_PRE      := @
21
 
21
 
-
 
22
SHOWARGS    := NONE
-
 
23
 
22
USE_FILTER  = 1
24
USE_FILTER  := 1
23
LEAVETMP    =
25
LEAVETMP    :=
24
SHOWENV     =
26
SHOWENV     :=
25
 
27
 
26
ifdef OPTIONS
28
ifdef OPTIONS
27
 
29
 
28
ifneq "$(findstring args,$(OPTIONS))" ""        # Show arguments (default)
30
ifneq "$(findstring args,$(OPTIONS))" ""        # Show arguments (default)
29
CC_PRE =
31
CC_PRE :=
30
XX_PRE =
32
XX_PRE :=
-
 
33
SHOWARGS := ARGS
31
endif
34
endif
32
 
35
 
33
ifneq "$(findstring noargs,$(OPTIONS))" ""      # Show no arguments
36
ifneq "$(findstring noargs,$(OPTIONS))" ""      # Show no arguments
34
CC_PRE = @
37
CC_PRE := @
35
XX_PRE = @
38
XX_PRE := @
-
 
39
SHOWARGS := NONE
36
endif
40
endif
37
 
41
 
38
ifneq "$(findstring allargs,$(OPTIONS))" ""     #  Show ALL arguments
42
ifneq "$(findstring allargs,$(OPTIONS))" ""     #  Show ALL arguments
39
AA_PRE :=
43
AA_PRE :=
-
 
44
SHOWARGS := ALL
40
endif
45
endif
41
 
46
 
42
ifneq "$(findstring filter,$(OPTIONS))" ""      # Use filter (Default)
47
ifneq "$(findstring filter,$(OPTIONS))" ""      # Use filter (Default)
43
USE_FILTER = 1
48
USE_FILTER := 1
44
endif
49
endif
45
 
50
 
46
ifneq "$(findstring nofilter,$(OPTIONS))" ""    # Don't use filter
51
ifneq "$(findstring nofilter,$(OPTIONS))" ""    # Don't use filter
47
USE_FILTER  = 
52
USE_FILTER  :=
48
endif
53
endif
49
 
54
 
50
ifneq "$(findstring leavetmp,$(OPTIONS))" ""    # Leave temp files
55
ifneq "$(findstring leavetmp,$(OPTIONS))" ""    # Leave temp files
51
LEAVETMP = 1
56
LEAVETMP := 1
52
endif
57
endif
53
 
58
 
54
ifneq "$(findstring noleavetmp,$(OPTIONS))" ""  # Don't leave temp files (Default)
59
ifneq "$(findstring noleavetmp,$(OPTIONS))" ""  # Don't leave temp files (Default)
55
LEAVETMP =
60
LEAVETMP :=
56
endif
61
endif
57
 
62
 
58
ifneq "$(findstring showenv,$(OPTIONS))" ""     # Display env before commands
63
ifneq "$(findstring showenv,$(OPTIONS))" ""     # Display env before commands
59
SHOWENV = 1
64
SHOWENV := 1
60
endif
65
endif
61
 
66
 
62
ifneq "$(findstring noshowenv,$(OPTIONS))" ""   # Don't display env before commands
67
ifneq "$(findstring noshowenv,$(OPTIONS))" ""   # Don't display env before commands
63
SHOWENV =
68
SHOWENV :=
64
endif
69
endif
65
 
70
 
66
endif
71
endif
67
 
72
 
68
#
73
#