mb: Set coreboot as DSDT's manufacturer model ID
[coreboot.git] / util / bimgtool / Makefile
blob05ddf7d757eaeb5cc51a6aedd17153b5863865d2
1 obj ?= $(CURDIR)
3 HOSTCC ?= gcc
4 CFLAGS ?= -g
5 CFLAGS += -D_7ZIP_ST
6 CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
7 CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
8 CFLAGS += -Wstrict-aliasing -Wshadow -Werror
10 all: $(obj)/bimgtool
12 clean:
13 rm -f $(obj)/bimgtool
15 $(obj)/bimgtool: bimgtool.c
16 $(HOSTCC) $(CFLAGS) -o $@ $^