diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-09-01 08:25:36 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-09-01 08:25:36 +1000 |
commit | 6ba3445126c94b40c68ae0f2daa2df0d9ca8451c (patch) | |
tree | 5bca8c16f18253f8859fd16afff7e35276e3a0b3 /ext | |
parent | d47358ae3967fbbbe0b8975921e5d6dba925fba1 (diff) | |
download | mongo-6ba3445126c94b40c68ae0f2daa2df0d9ca8451c.tar.gz |
Rearrange directories to keep Makefile.am with the sources.
--HG--
rename : build_posix/AUTHORS => AUTHORS
rename : build_posix/bench/tcbench/Makefile.am => bench/tcbench/Makefile.am
rename : build_posix/configure.ac => configure.ac
rename : build_posix/ext/compressors/bzip2_compress/Makefile.am => ext/compressors/bzip2_compress/Makefile.am
rename : build_posix/ext/compressors/nop_compress/Makefile.am => ext/compressors/nop_compress/Makefile.am
rename : build_posix/test/format/Makefile.am => test/format/Makefile.am
rename : build_posix/test/insert/Makefile.am => test/insert/Makefile.am
rename : build_posix/test/salvage/Makefile.am => test/salvage/Makefile.am
rename : build_posix/test/thread/Makefile.am => test/thread/Makefile.am
Diffstat (limited to 'ext')
-rw-r--r-- | ext/compressors/bzip2_compress/Makefile.am | 6 | ||||
-rw-r--r-- | ext/compressors/nop_compress/Makefile.am | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/ext/compressors/bzip2_compress/Makefile.am b/ext/compressors/bzip2_compress/Makefile.am new file mode 100644 index 00000000000..e1b067b83d1 --- /dev/null +++ b/ext/compressors/bzip2_compress/Makefile.am @@ -0,0 +1,6 @@ +INCLUDES = -I$(top_builddir) -I$(top_srcdir)/src/include +LDADD = -lbz2 + +noinst_LTLIBRARIES = bzip2_compress.la +bzip2_compress_la_SOURCES = bzip2_compress.c +bzip2_compress_la_LDFLAGS = -no-undefined -module -avoid-version diff --git a/ext/compressors/nop_compress/Makefile.am b/ext/compressors/nop_compress/Makefile.am new file mode 100644 index 00000000000..2f919560201 --- /dev/null +++ b/ext/compressors/nop_compress/Makefile.am @@ -0,0 +1,5 @@ +INCLUDES = -I$(top_builddir) -I$(top_srcdir)/../src/include + +noinst_LTLIBRARIES = nop_compress.la +bzip2_compress_la_SOURCES = nop_compress.la +bzip2_compress_la_LDFLAGS = -no-undefined -module -avoid-version |