summaryrefslogtreecommitdiffstats
path: root/util/bimgtool/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/bimgtool/Makefile')
-rw-r--r--util/bimgtool/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/util/bimgtool/Makefile b/util/bimgtool/Makefile
deleted file mode 100644
index 05ddf7d757ea..000000000000
--- a/util/bimgtool/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-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 $@ $^