diff options
| author | Luke Dashjr <[email protected]> | 2013-09-09 02:02:28 +0000 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-11-11 09:57:28 +0100 |
| commit | eb12a14da777341e19035947f41c3e08470acd44 (patch) | |
| tree | 6ecbe6298f518eec14000177b257ce30e5a49209 /src/Makefile.include | |
| parent | Merge pull request #3232 from laanwj/2013_11_ubuntu1310 (diff) | |
| download | discoin-eb12a14da777341e19035947f41c3e08470acd44.tar.xz discoin-eb12a14da777341e19035947f41c3e08470acd44.zip | |
configure: Simplify common AM_CPPFLAGS and AM_LDFLAGS to a Makefile.common
Diffstat (limited to 'src/Makefile.include')
| -rw-r--r-- | src/Makefile.include | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Makefile.include b/src/Makefile.include index 352471061..8c2274a28 100644 --- a/src/Makefile.include +++ b/src/Makefile.include @@ -1,5 +1,9 @@ -# Helper for rules and subdir Makefiles to find parent targets. -# Flags and other non-target variables should not be set here. +AM_CPPFLAGS = $(INCLUDES) \ + -I$(top_builddir)/src/obj \ + -I$(top_srcdir)/src/leveldb/include \ + $(BDB_CPPFLAGS) \ + $(BOOST_INCLUDES) +AM_LDFLAGS = $(PTHREAD_CFLAGS) LIBBITCOIN=$(top_builddir)/src/libbitcoin.a LIBLEVELDB=$(top_builddir)/src/leveldb/libleveldb.a |