diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-09-06 07:09:39 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-09-06 07:09:39 +1000 |
commit | b12f6c545838fc2791dd67cf6d78d012f8e5ec47 (patch) | |
tree | dd35ca881789356f28c4075b11d5e8a023047042 /examples | |
parent | efc3756bcf7651e8395aaa291bfc3c6d65693b5b (diff) | |
download | mongo-b12f6c545838fc2791dd67cf6d78d012f8e5ec47.tar.gz |
Fix up various build issues:
* make test programs link statically by default
* depende on libwiredtiger.la so tests are relinked when the library changes
* don't bother with helper targets for test/insert
Diffstat (limited to 'examples')
-rw-r--r-- | examples/c/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/c/Makefile.am b/examples/c/Makefile.am index 2190ec5ba8a..ba9fc61814c 100644 --- a/examples/c/Makefile.am +++ b/examples/c/Makefile.am @@ -1,4 +1,4 @@ -LDADD = -L$(top_builddir) -lwiredtiger +LDADD = $(top_builddir)/libwiredtiger.la noinst_PROGRAMS = ex_access ex_all ex_call_center ex_config ex_cursor \ ex_extending ex_hello ex_pack ex_process ex_schema ex_sequence \ ex_stat ex_thread ex_tpcb ex_transaction |