From b5ff34695f8d82646d4e7865012285478bd3a236 Mon Sep 17 00:00:00 2001 From: fuwa Date: Thu, 20 Sep 2018 08:40:16 +0800 Subject: [PATCH] add libsodium as dep --- Makefile | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index d6d5e88..bfbdf21 100644 --- a/Makefile +++ b/Makefile @@ -10,10 +10,6 @@ all: build-external-libs build-external-libs: clean-external-libs collect -# faster build for testing f-droid release -use-prebuilt-external-libs: - script/build-external-libs/use-archive.sh - clean-external-libs: script/build-external-libs/clean.sh @@ -34,20 +30,27 @@ libsodium: toolchain script/build-external-libs/fetch-libsodium.sh script/build-external-libs/build-libsodium.sh -wownero: toolchain openssl boost +wownero: toolchain openssl boost libsodium script/build-external-libs/fetch-wownero.sh script/build-external-libs/patch-wownero.sh script/build-external-libs/build-wownero.sh +collect: wownero + script/build-external-libs/collect.sh + + + +# dev shortcut + +# faster build for testing f-droid release +use-prebuilt-external-libs: + script/build-external-libs/use-archive.sh + wownero-unsafe: script/build-external-libs/fetch-wownero.sh script/build-external-libs/patch-wownero.sh script/build-external-libs/build-wownero.sh -collect: wownero - script/build-external-libs/collect.sh - -