blob: 05ddf7d757eaeb5cc51a6aedd17153b5863865d2 [file] [log] [blame]
Martin Roth6116f362016-03-08 12:32:40 -07001obj ?= $(CURDIR)
Paul Burtonb1688ca2014-06-14 00:09:49 +01002
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
Paul Burtonb1688ca2014-06-14 00:09:49 +01009
Stefan Reinauer3740d772016-02-09 17:53:59 -080010all: $(obj)/bimgtool
Paul Burtonb1688ca2014-06-14 00:09:49 +010011
12clean:
13 rm -f $(obj)/bimgtool
14
15$(obj)/bimgtool: bimgtool.c
16 $(HOSTCC) $(CFLAGS) -o $@ $^