sbsigntool -> sbsign

Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
Jeremy Kerr 2012-05-12 09:45:22 -07:00
parent b3dc6529eb
commit 902cb928b6
2 changed files with 4 additions and 4 deletions

View file

@ -4,16 +4,16 @@ CPPFLAGS = -I. $(ccan_includes)
CFLAGS = -Wall -Werror -Wextra -ggdb --std=c99 CFLAGS = -Wall -Werror -Wextra -ggdb --std=c99
LDFLAGS = -fwhole-program 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 sbverify_objs = sbverify.o image.o
libs = -lbfd -lcrypto libs = -lbfd -lcrypto
ccan_objs = lib/ccan/libccan.a ccan_objs = lib/ccan/libccan.a
ccan_includes = -I./lib/ccan 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) $(LINK.o) -o $@ $^ $(libs)
sbverify: $(sbverify_objs) $(ccan_objs) sbverify: $(sbverify_objs) $(ccan_objs)
@ -27,5 +27,5 @@ $(ccan_objs):
cd $(@D) && $(MAKE) cd $(@D) && $(MAKE)
clean: clean:
rm -f sbsigntool rm -f sbsign
rm -f *.o rm -f *.o