diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2023-03-16 16:22:11 +0100 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2023-03-16 16:22:11 +0100 |
commit | 011dfc839d40c735fb63474aa6d5e1412b823a3b (patch) | |
tree | 4579fecc9c703d8ff348a69c6ce74679c8d2c210 /Makefile | |
parent | 6f45894c7f5f145208e0fce4344b2b87eb8ae722 (diff) | |
download | roux-011dfc839d40c735fb63474aa6d5e1412b823a3b.tar.gz |
silence format warning more reliably
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile index c51e283..0dbe5f7 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,7 @@ OBJ = $(COMMOBJ) $(AMD64OBJ) $(ARM64OBJ) $(RV64OBJ) SRCALL = $(OBJ:.o=.c) -CFLAGS = $(CPPFLAGS) -std=c99 -g \ - -Wall -Wextra -Wpedantic -Wno-format-truncation +CFLAGS = -std=c99 -g -Wall -Wextra -Wpedantic qbe: $(OBJ) $(CC) $(LDFLAGS) $(OBJ) -o $@ |