From 16e86150d04b207454711182e30a3b50bab45b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Wed, 15 May 2019 09:54:35 +0200 Subject: [PATCH] Install headers automatically This fix install all the headers under include/ into /usr/local/include. The fix solves problems that arise when building libraries that depend on secp256k1 such as bitcoin-system which require all the headers --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index 9e5b7dcce0..e0de3fa206 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,6 +8,8 @@ else JNI_LIB = endif include_HEADERS = include/secp256k1.h +include_HEADERS += include/secp256k1_ecdh.h +include_HEADERS += include/secp256k1_recovery.h noinst_HEADERS = noinst_HEADERS += src/scalar.h noinst_HEADERS += src/scalar_4x64.h