blob: 3bd0f07a7dd713abc4bec9ffdd3e11b5e0c6d249 [file] [log] [blame]
Paul Burtonb1688ca2014-06-14 00:09:49 +01001obj ?= $(shell pwd)
2
3HOSTCC ?= gcc
4CFLAGS ?= -g
5CFLAGS += -D_7ZIP_ST
6CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
7CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
8CFLAGS += -Wstrict-aliasing -Wshadow -Werror
9LDFLAGS += -g
10
11all: dep $(obj)/bimgtool
12
13clean:
14 rm -f $(obj)/bimgtool
15
16$(obj)/bimgtool: bimgtool.c
17 $(HOSTCC) $(CFLAGS) -o $@ $^