diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-02-09 17:53:59 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-12 04:47:04 +0100 |
commit | 3740d77020ac298b69c7b49369f93b6cf9548d0a (patch) | |
tree | 14424c59770b4d5fe020f2a4d2c9371d5241271e /util/bimgtool | |
parent | 613d3ad2086f463170fc0791653532abc937dc9c (diff) | |
download | coreboot-3740d77020ac298b69c7b49369f93b6cf9548d0a.tar.xz |
bimgtool: Drop unused targets and variables from Makefile
dep has not been defined (and will hence break the build)
LDFLAGS is not used.
Change-Id: I4f91e1e7a176367aa4e1a1c63a2afc0b3186767e
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/13653
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/bimgtool')
-rw-r--r-- | util/bimgtool/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/bimgtool/Makefile b/util/bimgtool/Makefile index 3bd0f07a7d..ca4a9d9776 100644 --- a/util/bimgtool/Makefile +++ b/util/bimgtool/Makefile @@ -6,9 +6,8 @@ CFLAGS += -D_7ZIP_ST CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs CFLAGS += -Wstrict-aliasing -Wshadow -Werror -LDFLAGS += -g -all: dep $(obj)/bimgtool +all: $(obj)/bimgtool clean: rm -f $(obj)/bimgtool |