diff options
author | Henrik Nordström <henrik@knc.nu> | 2016-05-11 12:35:06 +0200 |
---|---|---|
committer | Henrik Nordström <henrik@knc.nu> | 2016-05-11 12:35:06 +0200 |
commit | 9025cd9b72bf316f4d84b71b03af25675c834ff9 (patch) | |
tree | 019dce87cee11b16fb1a1e4c9ce6cf96cc12ac50 /libtommath | |
parent | 2b891f5eb3c3070ed3ae260782371ccbf4e373f1 (diff) |
Support out-of-tree builds usign bundled libtom
When building out-of-tree we need both source and generated
folders in include paths to find both distributed and generated
headers.
Diffstat (limited to 'libtommath')
-rw-r--r-- | libtommath/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/Makefile.in b/libtommath/Makefile.in index 06aba68..019c50b 100644 --- a/libtommath/Makefile.in +++ b/libtommath/Makefile.in @@ -9,7 +9,7 @@ VPATH=@srcdir@ srcdir=@srcdir@ # So that libtommath can include Dropbear headers for options and m_burn() -CFLAGS += -I$(srcdir)/../libtomcrypt/src/headers/ -I$(srcdir)/../ +CFLAGS += -I. -I$(srcdir) -I../libtomcrypt/src/headers/ -I$(srcdir)/../libtomcrypt/src/headers/ -I../ -I$(srcdir)/../ ifndef IGNORE_SPEED |