diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-08-30 22:27:26 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-08-30 22:27:26 +1000 |
commit | 70b8d4d933af0f0be7a45cb26bc7c4e07680fb62 (patch) | |
tree | 8cc525189709cfe45a62f9d6f3b75ad33de40b85 /build_posix/Make.base | |
parent | 684a0ca663043337f55fde2ea4bbbe32702ec148 (diff) | |
download | mongo-70b8d4d933af0f0be7a45cb26bc7c4e07680fb62.tar.gz |
Use automake for all builds, don't maintain Makefiles manually.
--HG--
rename : bench/tcbench/Makefile => build_posix/bench/tcbench/Makefile.am
rename : ext/compressors/bzip2_compress/Makefile => build_posix/ext/compressors/bzip2_compress/Makefile.am
rename : ext/compressors/nop_compress/Makefile => build_posix/ext/compressors/nop_compress/Makefile.am
rename : test/format/Makefile => build_posix/test/format/Makefile.am
rename : test/insert/Makefile => build_posix/test/insert/Makefile.am
rename : test/salvage/Makefile => build_posix/test/salvage/Makefile.am
rename : test/thread/Makefile => build_posix/test/thread/Makefile.am
Diffstat (limited to 'build_posix/Make.base')
-rw-r--r-- | build_posix/Make.base | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build_posix/Make.base b/build_posix/Make.base index eb65181f2ad..28915b77df9 100644 --- a/build_posix/Make.base +++ b/build_posix/Make.base @@ -1,6 +1,8 @@ +SUBDIRS = . bench/tcbench ext/compressors/bzip2_compress test/format test/insert test/salvage test/thread + wtdir = $(prefix)/wt wt_LTLIBRARIES = libwiredtiger.la -LDADD = $(wt_LTLIBRARIES) -lpthread +LDADD = $(wt_LTLIBRARIES) wt_PROGRAMS = wt wt_SOURCES = util_create.c util_dump.c util_dumpfile.c util_getopt.c \ @@ -23,7 +25,7 @@ libtool: $(LIBTOOL_DEPS) $(SHELL) ./config.status libtool pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = wiredtiger-@VERSION@.pc +pkgconfig_DATA = wiredtiger.pc ../src/include/extern.h: prototype.chk |