diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-02-03 18:02:49 +0100 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-02-03 18:02:49 +0100 |
commit | 0a3803bb3f3cb019ee9cf371e0ed55be04e94a4f (patch) | |
tree | 2bc6ee6993cdc35a1d23e008c8c4a4c7ddcfc5d9 /Makefile.am | |
parent | fc4f1875fe57c39bf122cfb43a30893fef58c157 (diff) |
CFLAGS adjusted for POSIX compliancy
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1eb2838..a321aac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ bin_PROGRAMS = rpt rpt_SOURCES = rpt.c -AM_CFLAGS = -std=c99 -Wall -Wextra -D_GNU_SOURCE +AM_CFLAGS = -std=c99 -Wall -Wextra -g -O2 -D_POSIX_C_SOURCE=200809L dist_man1_MANS = rpt.1 |