7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
SC = chicken-csc
sc-opt = 5
sc-flags = $(if $(debug),-d3,-O$(sc-opt))
sc = $(SC) $(sc-flags)
cc-opt = fast
cc-flags = $(if $(debug),-g,-O$(cc-opt))
cc = $(CC) $(cc-flags)
post = $(if $(debug),, && strip $@)
cc-post = $(post)
sc-post = $(post)
mc-post = $(post)
|
|
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SC = chicken-csc
sc-opt = 5
sc-flags = $(if $(debug),-d3,-O$(sc-opt))
sc = $(SC) $(sc-flags)
cc-opt = fast
cc-std = c2x
cc-flags = $(if $(debug),-g,-O$(cc-opt)) -std=$(cc-std)
cc = $(CC) $(cc-flags)
post = $(if $(debug),, && strip $@)
cc-post = $(post)
sc-post = $(post)
mc-post = $(post)
|