diff options
author | Jacob Garber <jgarber1@ualberta.ca> | 2019-06-27 17:34:13 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-01 14:30:53 +0000 |
commit | 02b1e20f005007685a71945e86b701bb2e5b79f0 (patch) | |
tree | 9bb23bf4156a38498fa7f458513190abbdeb6c8c /util/ifdtool/Makefile | |
parent | 595d926bc23e706acc06e69fa3313bea5d461186 (diff) |
util/ifdtool: Enable -Wmissing-prototypes
Change-Id: Idc31144024f785a42cbad78bf2c965d08dcc5178
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33861
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/ifdtool/Makefile')
-rw-r--r-- | util/ifdtool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ifdtool/Makefile b/util/ifdtool/Makefile index e1188b209c..4cddfc5542 100644 --- a/util/ifdtool/Makefile +++ b/util/ifdtool/Makefile @@ -18,7 +18,7 @@ PROGRAM = ifdtool CC = gcc INSTALL = /usr/bin/env install PREFIX = /usr/local -CFLAGS = -O2 -g -Wall -W -Werror -I../../src/commonlib/include +CFLAGS = -O2 -g -Wall -W -Wmissing-prototypes -Werror -I../../src/commonlib/include LDFLAGS = OBJS = ifdtool.o |