openldap/libraries/liblmdb/Makefile

89 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:
2013-06-27 00:02:26 +08:00
#
# To compile successfully if the default does not:
# - MDB_USE_POSIX_SEM (enabled by default on BSD, Apple)
# Define if shared mutexes are unsupported. Note that Posix
# semaphores and shared mutexes have different behaviors and
# different problems, see the Caveats section in lmdb.h.
#
# For best performance or to compile successfully:
2013-06-27 00:02:26 +08:00
# - MDB_DSYNC = "O_DSYNC" (default) or "O_SYNC" (less efficient)
# If O_DSYNC is undefined but exists in /usr/include,
# preferably set some compiler flag to get the definition.
# - MDB_FDATASYNC = "fdatasync" or "fsync"
# Function for flushing the data of a file. Define this to
# "fsync" if fdatasync() is not supported. fdatasync is
# default except on BSD, Apple, Android which use fsync.
# - MDB_USE_PWRITEV
# Define if the pwritev() function is supported.
#
# Data format:
# - MDB_MAXKEYSIZE
# Controls data packing and limits, see mdb.c.
# You might need to change this if the default size is too small.
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
IPROGS = mdb_stat mdb_copy
2013-02-25 18:02:15 +08:00
IDOCS = mdb_stat.1 mdb_copy.1
2012-12-01 04:39:53 +08:00
PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5
all: $(ILIBS) $(PROGS)
install: $(ILIBS) $(IPROGS) $(IHDRS)
2013-02-25 14:50:51 +08:00
cp $(IPROGS) $(DESTDIR)$(prefix)/bin
cp $(ILIBS) $(DESTDIR)$(prefix)/lib
cp $(IHDRS) $(DESTDIR)$(prefix)/include
2013-02-25 18:02:15 +08:00
cp $(IDOCS) $(DESTDIR)$(prefix)/man/man1
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-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
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 $<