Differences From Artifact [e7dd2b0bcc]:
- File makerules — part of check-in [0d4aa1c43a] at 2022-10-27 20:04:19 on branch trunk — add soda (user: lexi, size: 640) [annotate] [blame] [check-ins using]
To Artifact [2596de13fb]:
- File makerules — part of check-in [7bafdb9f90] at 2022-10-31 23:37:32 on branch trunk — fix lack of alignment and small max file size for mkup; check in missing files (user: lexi, size: 668) [annotate] [blame] [check-ins using]
7 7 8 8 SC = chicken-csc 9 9 sc-opt = 5 10 10 sc-flags = $(if $(debug),-d3,-O$(sc-opt)) 11 11 sc = $(SC) $(sc-flags) 12 12 13 13 cc-opt = fast 14 -cc-flags = $(if $(debug),-g,-O$(cc-opt)) 14 +cc-std = c2x 15 +cc-flags = $(if $(debug),-g,-O$(cc-opt)) -std=$(cc-std) 15 16 cc = $(CC) $(cc-flags) 16 17 17 18 post = $(if $(debug),, && strip $@) 18 19 cc-post = $(post) 19 20 sc-post = $(post) 20 21 mc-post = $(post) 21 22