diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-04-17 19:28:38 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-04-17 19:28:38 -0400 |
commit | 2fdcb1a3d6919f378b2f83f14d3b3822a19fcc33 (patch) | |
tree | a98d36c6c61121e484e25e19c0232a4a1300094c | |
parent | bf81961b9d40c47ce2f7332e4cdaa9ca93fd93fc (diff) |
Prevent some gcc versions from complaining about {0} in tools/scan_includes.c
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index a9906fad..7ab1d146 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,7 +1,7 @@ .PHONY: all clean CC := gcc -CFLAGS := -O3 -std=c99 -Wall -Wextra -pedantic +CFLAGS := -O3 -std=c99 -Wall -Wextra -Wno-missing-field-initializers tools := scan_includes gfx pkmncompress |