From 902cb928b6bf3a6c9e70ab8f37a36c7dc4234b8a Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Sat, 12 May 2012 09:45:22 -0700 Subject: [PATCH] sbsigntool -> sbsign Signed-off-by: Jeremy Kerr --- Makefile | 8 ++++---- sbsigntool.c => sbsign.c | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename sbsigntool.c => sbsign.c (100%) diff --git a/Makefile b/Makefile index 02ce61f..2c874a4 100644 --- a/Makefile +++ b/Makefile @@ -4,16 +4,16 @@ CPPFLAGS = -I. $(ccan_includes) CFLAGS = -Wall -Werror -Wextra -ggdb --std=c99 LDFLAGS = -fwhole-program -sbsigntool_objs = sbsigntool.o idc.o image.o +sbsign_objs = sbsign.o idc.o image.o sbverify_objs = sbverify.o image.o libs = -lbfd -lcrypto ccan_objs = lib/ccan/libccan.a ccan_includes = -I./lib/ccan -all: sbsigntool sbverify +all: sbsign sbverify -sbsigntool: $(sbsigntool_objs) $(ccan_objs) +sbsign: $(sbsign_objs) $(ccan_objs) $(LINK.o) -o $@ $^ $(libs) sbverify: $(sbverify_objs) $(ccan_objs) @@ -27,5 +27,5 @@ $(ccan_objs): cd $(@D) && $(MAKE) clean: - rm -f sbsigntool + rm -f sbsign rm -f *.o diff --git a/sbsigntool.c b/sbsign.c similarity index 100% rename from sbsigntool.c rename to sbsign.c