From 0cc4d6f0a43c1b3de8a5fd1fbf40e7245b3147b5 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Sun, 18 Oct 2015 19:23:51 +0300 Subject: [PATCH] Makefile fixes. Add base58 module. --- src/makefile.bsd | 1 + src/makefile.linux-mingw | 1 + src/makefile.mingw | 1 + src/makefile.osx | 1 + src/makefile.unix | 1 + 5 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/makefile.bsd b/src/makefile.bsd index 53b66a4..f1be0e5 100644 --- a/src/makefile.bsd +++ b/src/makefile.bsd @@ -109,6 +109,7 @@ OBJS= \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ + obj/base58.o \ obj/key.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 1a9167c..c8f2d52 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -72,6 +72,7 @@ OBJS= \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ + obj/base58.o \ obj/key.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.mingw b/src/makefile.mingw index 3b9cc82..ca9989c 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -62,6 +62,7 @@ OBJS= \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ + obj/base58.o \ obj/key.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.osx b/src/makefile.osx index 8074a27..c5959c9 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -69,6 +69,7 @@ OBJS= \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ + obj/base58.o \ obj/key.o \ obj/db.o \ obj/init.o \ diff --git a/src/makefile.unix b/src/makefile.unix index 9671135..d5aa9b1 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -110,6 +110,7 @@ OBJS= \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ + obj/base58.o \ obj/key.o \ obj/db.o \ obj/init.o \ -- 1.7.1