From fb43a137e72d1f428efef00047a416497463edfb Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Thu, 6 Dec 2012 12:16:57 +0100 Subject: samsungtool: allow firmware creation The new tool fwcrypt can create a firmware image with a specified model, version, region and so on. Change-Id: I0e90e9ab905398a3e7ae3f4fb8b8bbfb2d12d703 --- utils/samsungtools/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'utils/samsungtools/Makefile') diff --git a/utils/samsungtools/Makefile b/utils/samsungtools/Makefile index 97af8bb..1179de5 100644 --- a/utils/samsungtools/Makefile +++ b/utils/samsungtools/Makefile @@ -3,7 +3,7 @@ CC=gcc LD=gcc CFLAGS=-g -std=c99 -W -Wall $(DEFINES) `pkg-config --cflags openssl` LDFLAGS=`pkg-config --libs openssl` -BINS=fwdecrypt +BINS=fwdecrypt fwcrypt all: $(BINS) @@ -13,5 +13,8 @@ all: $(BINS) fwdecrypt: fwdecrypt.o samsung.o $(LD) -o $@ $^ $(LDFLAGS) +fwcrypt: fwcrypt.o samsung.o + $(LD) -o $@ $^ $(LDFLAGS) + clean: rm -fr *.o $(BINS) -- cgit v1.1