summaryrefslogtreecommitdiffstats
path: root/util/bimgtool/Makefile
blob: 05ddf7d757eaeb5cc51a6aedd17153b5863865d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
obj ?= $(CURDIR)

HOSTCC ?= gcc
CFLAGS ?= -g
CFLAGS += -D_7ZIP_ST
CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
CFLAGS += -Wstrict-aliasing -Wshadow -Werror

all: $(obj)/bimgtool

clean:
	rm -f $(obj)/bimgtool

$(obj)/bimgtool: bimgtool.c
	$(HOSTCC) $(CFLAGS) -o $@ $^