openldap/libraries/liblmdb/Makefile

94 lines
2.6 KiB
Makefile
Raw Normal View History

2013-06-27 00:02:26 +08:00
# Makefile for liblmdb (Lightning memory-mapped database library).
########################################################################
# Configuration. The compiler options must enable threaded compilation.
#
# Preprocessor macros (for CPPFLAGS) of interest...
# Note that the defaults should already be correct for most
# platforms; you should not need to change any of these.
# Read their descriptions in mdb.c if you do:
2013-06-27 00:02:26 +08:00
#
# - MDB_USE_POSIX_SEM
# - MDB_DSYNC
# - MDB_FDATASYNC
2013-06-27 00:02:26 +08:00
# - MDB_USE_PWRITEV
#
# There may be other macros in mdb.c of interest. You should
# read mdb.c before changing any of them.
2013-06-27 00:02:26 +08:00
#
2011-06-30 00:07:37 +08:00
CC = gcc
2011-08-12 19:11:14 +08:00
W = -W -Wall -Wno-unused-parameter -Wbad-function-cast
THREADS = -pthread
2011-07-01 18:56:09 +08:00
OPT = -O2 -g
CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS)
2011-07-01 21:37:51 +08:00
LDLIBS =
SOLIBS =
2012-12-01 04:39:53 +08:00
prefix = /usr/local
2013-06-27 00:02:26 +08:00
########################################################################
2012-12-01 04:39:53 +08:00
IHDRS = lmdb.h
ILIBS = liblmdb.a liblmdb.so
2014-06-20 23:49:59 +08:00
IPROGS = mdb_stat mdb_copy mdb_dump mdb_load
IDOCS = mdb_stat.1 mdb_copy.1 mdb_dump.1 mdb_load.1
2012-12-01 04:39:53 +08:00
PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5
all: $(ILIBS) $(PROGS)
install: $(ILIBS) $(IPROGS) $(IHDRS)
2013-08-10 19:12:42 +08:00
for f in $(IPROGS); do cp $$f $(DESTDIR)$(prefix)/bin; done
for f in $(ILIBS); do cp $$f $(DESTDIR)$(prefix)/lib; done
for f in $(IHDRS); do cp $$f $(DESTDIR)$(prefix)/include; done
for f in $(IDOCS); do cp $$f $(DESTDIR)$(prefix)/man/man1; done
2011-06-30 00:07:37 +08:00
clean:
2011-08-12 05:35:52 +08:00
rm -rf $(PROGS) *.[ao] *.so *~ testdb
2011-06-30 00:07:37 +08:00
test: all
mkdir testdb
2011-06-30 00:07:37 +08:00
./mtest && ./mdb_stat testdb
liblmdb.a: mdb.o midl.o
2011-08-12 08:33:28 +08:00
ar rs $@ mdb.o midl.o
2011-06-30 00:07:37 +08:00
liblmdb.so: mdb.o midl.o
2013-09-09 23:29:46 +08:00
# $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o $(SOLIBS)
2013-02-25 21:06:51 +08:00
$(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.o midl.o $(SOLIBS)
2011-08-12 05:35:52 +08:00
mdb_stat: mdb_stat.o liblmdb.a
mdb_copy: mdb_copy.o liblmdb.a
2014-06-20 20:33:31 +08:00
mdb_dump: mdb_dump.o liblmdb.a
2014-06-20 23:49:59 +08:00
mdb_load: mdb_load.o liblmdb.a
mtest: mtest.o liblmdb.a
mtest2: mtest2.o liblmdb.a
mtest3: mtest3.o liblmdb.a
mtest4: mtest4.o liblmdb.a
mtest5: mtest5.o liblmdb.a
mtest6: mtest6.o liblmdb.a
mdb.o: mdb.c lmdb.h midl.h
2011-08-12 05:35:52 +08:00
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c mdb.c
2011-08-12 08:33:28 +08:00
midl.o: midl.c midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c midl.c
2011-08-12 05:35:52 +08:00
2011-08-12 05:23:01 +08:00
%: %.o
2011-06-30 00:07:37 +08:00
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
%.o: %.c lmdb.h
2011-06-30 00:07:37 +08:00
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
2014-06-26 20:19:47 +08:00
coverage: xmtest
-rm -rf testdb; mkdir testdb
./xmtest
gcov xmdb.c
gcov xmidl.c
xmtest: mtest.o xmdb.o xmidl.o
gcc -o xmtest mtest.o xmdb.o xmidl.o -pthread -fprofile-arcs -ftest-coverage
xmdb.o: mdb.c lmdb.h midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -O0 -fprofile-arcs -ftest-coverage -c mdb.c -o $@
xmidl.o: midl.c midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -O0 -fprofile-arcs -ftest-coverage -c midl.c -o $@