openldap/libraries/liblmdb/Makefile

118 lines
3.3 KiB
Makefile
Raw Normal View History

2013-06-26 12:02:26 -04: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-26 12:02:26 -04:00
#
# - MDB_USE_POSIX_SEM
# - MDB_DSYNC
# - MDB_FDATASYNC
2015-01-11 06:41:08 -05:00
# - MDB_FDATASYNC_WORKS
2013-06-26 12:02:26 -04:00
# - MDB_USE_PWRITEV
2015-10-30 22:27:31 -04:00
# - MDB_USE_ROBUST
2013-06-26 12:02:26 -04:00
#
# There may be other macros in mdb.c of interest. You should
# read mdb.c before changing any of them.
2013-06-26 12:02:26 -04:00
#
2011-06-29 12:07:37 -04:00
CC = gcc
AR = ar
2014-07-05 10:49:10 -04:00
W = -W -Wall -Wno-unused-parameter -Wbad-function-cast -Wuninitialized
THREADS = -pthread
2011-07-01 06:56:09 -04:00
OPT = -O2 -g
CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS)
2011-07-01 09:37:51 -04:00
LDLIBS =
SOLIBS =
SOEXT = .so
2012-11-30 15:39:53 -05:00
prefix = /usr/local
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
includedir = $(prefix)/include
datarootdir = $(prefix)/share
mandir = $(datarootdir)/man
2012-11-30 15:39:53 -05:00
2013-06-26 12:02:26 -04:00
########################################################################
2012-11-30 15:39:53 -05:00
IHDRS = lmdb.h
ILIBS = liblmdb.a liblmdb$(SOEXT)
2014-06-20 11:49:59 -04:00
IPROGS = mdb_stat mdb_copy mdb_dump mdb_load
IDOCS = mdb_stat.1 mdb_copy.1 mdb_dump.1 mdb_load.1
2012-11-30 15:39:53 -05:00
PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5
all: $(ILIBS) $(PROGS)
install: $(ILIBS) $(IPROGS) $(IHDRS)
mkdir -p $(DESTDIR)$(bindir)
mkdir -p $(DESTDIR)$(libdir)
mkdir -p $(DESTDIR)$(includedir)
mkdir -p $(DESTDIR)$(mandir)/man1
for f in $(IPROGS); do cp $$f $(DESTDIR)$(bindir); done
for f in $(ILIBS); do cp $$f $(DESTDIR)$(libdir); done
for f in $(IHDRS); do cp $$f $(DESTDIR)$(includedir); done
for f in $(IDOCS); do cp $$f $(DESTDIR)$(mandir)/man1; done
2011-06-29 12:07:37 -04:00
clean:
2014-12-13 14:35:08 -05:00
rm -rf $(PROGS) *.[ao] *.[ls]o *~ testdb
2011-06-29 12:07:37 -04:00
test: all
rm -rf testdb && mkdir testdb
2011-06-29 12:07:37 -04:00
./mtest && ./mdb_stat testdb
liblmdb.a: mdb.o midl.o
$(AR) rs $@ mdb.o midl.o
2011-06-29 12:07:37 -04:00
liblmdb$(SOEXT): mdb.lo midl.lo
2013-09-09 11:29:46 -04:00
# $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o $(SOLIBS)
2014-10-01 16:00:03 -04:00
$(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.lo midl.lo $(SOLIBS)
2011-08-11 17:35:52 -04:00
mdb_stat: mdb_stat.o liblmdb.a
mdb_copy: mdb_copy.o liblmdb.a
2014-06-20 08:33:31 -04:00
mdb_dump: mdb_dump.o liblmdb.a
2014-06-20 11:49:59 -04: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
2014-10-01 16:00:03 -04:00
$(CC) $(CFLAGS) $(CPPFLAGS) -c mdb.c
2011-08-11 17:35:52 -04:00
2011-08-11 20:33:28 -04:00
midl.o: midl.c midl.h
2014-10-01 16:00:03 -04:00
$(CC) $(CFLAGS) $(CPPFLAGS) -c midl.c
mdb.lo: mdb.c lmdb.h midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c mdb.c -o $@
midl.lo: midl.c midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c midl.c -o $@
2011-08-11 17:35:52 -04:00
2011-08-11 17:23:01 -04:00
%: %.o
2011-06-29 12:07:37 -04:00
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
%.o: %.c lmdb.h
2011-06-29 12:07:37 -04:00
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
2014-06-26 08:19:47 -04:00
2014-06-30 07:42:41 -04:00
COV_FLAGS=-fprofile-arcs -ftest-coverage
COV_OBJS=xmdb.o xmidl.o
2014-06-26 08:19:47 -04:00
coverage: xmtest
2014-06-30 07:42:41 -04:00
for i in mtest*.c [0-9]*.c; do j=`basename \$$i .c`; $(MAKE) $$j.o; \
gcc -o x$$j $$j.o $(COV_OBJS) -pthread $(COV_FLAGS); \
rm -rf testdb; mkdir testdb; ./x$$j; done
2014-06-26 08:19:47 -04:00
gcov xmdb.c
gcov xmidl.c
xmtest: mtest.o xmdb.o xmidl.o
2014-06-30 07:42:41 -04:00
gcc -o xmtest mtest.o xmdb.o xmidl.o -pthread $(COV_FLAGS)
2014-06-26 08:19:47 -04:00
xmdb.o: mdb.c lmdb.h midl.h
2014-06-30 07:42:41 -04:00
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -O0 $(COV_FLAGS) -c mdb.c -o $@
2014-06-26 08:19:47 -04:00
xmidl.o: midl.c midl.h
2014-06-30 07:42:41 -04:00
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -O0 $(COV_FLAGS) -c midl.c -o $@