diff options
author | Jacob Garber <jgarber1@ualberta.ca> | 2019-07-01 11:24:03 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-07 20:23:55 +0000 |
commit | 57f2188d8610bb7fd57e30b562cdb672691f18da (patch) | |
tree | fa0f3c61a0caa9894da46c6fcc190d2f90d00aba /util | |
parent | 6faccd1f00a3606b720fc3a233c2de5cd97bb176 (diff) |
util/inteltool: Enable -Wmissing-prototypes
Change-Id: I6bf041d089498780ea2b7c52402d7452d44d3f87
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33946
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/inteltool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/inteltool/Makefile b/util/inteltool/Makefile index d88063be75..0f74a7c257 100644 --- a/util/inteltool/Makefile +++ b/util/inteltool/Makefile @@ -22,7 +22,7 @@ top ?= $(abspath ../..) CC ?= gcc INSTALL ?= /usr/bin/env install PREFIX ?= /usr/local -CFLAGS ?= -O2 -g -Wall -W +CFLAGS ?= -O2 -g -Wall -W -Wmissing-prototypes LDFLAGS += -lpci -lz CPPFLAGS += -I$(top)/src/commonlib/include |