summaryrefslogtreecommitdiff
path: root/utils/samsungtools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/samsungtools/Makefile')
-rw-r--r--utils/samsungtools/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/samsungtools/Makefile b/utils/samsungtools/Makefile
index 97af8bb873..1179de5243 100644
--- a/utils/samsungtools/Makefile
+++ b/utils/samsungtools/Makefile
@@ -3,7 +3,7 @@ CC=gcc
3LD=gcc 3LD=gcc
4CFLAGS=-g -std=c99 -W -Wall $(DEFINES) `pkg-config --cflags openssl` 4CFLAGS=-g -std=c99 -W -Wall $(DEFINES) `pkg-config --cflags openssl`
5LDFLAGS=`pkg-config --libs openssl` 5LDFLAGS=`pkg-config --libs openssl`
6BINS=fwdecrypt 6BINS=fwdecrypt fwcrypt
7 7
8all: $(BINS) 8all: $(BINS)
9 9
@@ -13,5 +13,8 @@ all: $(BINS)
13fwdecrypt: fwdecrypt.o samsung.o 13fwdecrypt: fwdecrypt.o samsung.o
14 $(LD) -o $@ $^ $(LDFLAGS) 14 $(LD) -o $@ $^ $(LDFLAGS)
15 15
16fwcrypt: fwcrypt.o samsung.o
17 $(LD) -o $@ $^ $(LDFLAGS)
18
16clean: 19clean:
17 rm -fr *.o $(BINS) 20 rm -fr *.o $(BINS)