Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/osm0sis/mkbootimg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Butcher <adam.butcher@selex-es.com>2018-05-04 11:33:54 +0300
committerChris Renshaw <osm0sis@outlook.com>2018-05-04 19:58:20 +0300
commit3e449b8cc27cdc48ab053bd7d952f9d11b5c4a22 (patch)
treea859747fb4b84b546a72ce4b8fd1b9d8c1e9cb9a
parent015be7ed1001f60c9d621970cab71577d396f452 (diff)
build: Fix dependency on libmincrypt in Makefile.
-rwxr-xr-xMakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bdf9e547..1b154870 100755
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ else
LDFLAGS += -Wl,--gc-sections -s
endif
-all:libmincrypt.a mkbootimg$(EXE) unpackbootimg$(EXE)
+all:mkbootimg$(EXE) unpackbootimg$(EXE)
static:
make LDFLAGS="$(LDFLAGS) -static"
@@ -32,7 +32,7 @@ static:
libmincrypt.a:
make -C libmincrypt
-mkbootimg$(EXE):mkbootimg.o
+mkbootimg$(EXE):mkbootimg.o libmincrypt.a
$(CROSS_COMPILE)$(CC) -o $@ $^ -L. -lmincrypt $(LDFLAGS)
mkbootimg.o:mkbootimg.c