diff options
author | Leah Neukirchen <leah@vuxu.org> | 2024-06-09 20:27:36 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2024-06-09 20:27:36 +0200 |
commit | 49716ba836e3cb77d3ee340e5bb7ee46f263a1f8 (patch) | |
tree | 7c30497d97e5625c0dccb8fc96ab7166d3a72524 | |
parent | 6a39520fb104ddc0bedf19e7de872615590ba709 (diff) | |
download | nano-exporter-49716ba836e3cb77d3ee340e5bb7ee46f263a1f8.tar.gz nano-exporter-49716ba836e3cb77d3ee340e5bb7ee46f263a1f8.tar.xz nano-exporter-49716ba836e3cb77d3ee340e5bb7ee46f263a1f8.zip |
default CFLAGS to -g -O2
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile index b09cc5d..91d7f13 100644 --- a/Makefile +++ b/Makefile @@ -36,8 +36,7 @@ COLLECTORS += vmstat # compile settings -CFLAGS = -std=c11 -Wall -Wextra -pedantic -Wno-format-truncation $(if $(DEBUG),-g,-Os) -LDFLAGS = $(if $(DEBUG),-g,-Os -s) +CFLAGS = -std=c11 -Wall -Wextra -pedantic -Wno-format-truncation -g -O2 # build rules |