2013-06-27 00:02:26 +08:00
|
|
|
# Makefile for liblmdb (Lightning memory-mapped database library).
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Configuration. The compiler options must enable threaded compilation.
|
|
|
|
#
|
2013-07-13 04:55:18 +08:00
|
|
|
# Preprocessor macros (for CPPFLAGS) of interest...
|
|
|
|
# Note that the defaults should already be correct for most
|
2013-08-11 05:55:51 +08:00
|
|
|
# 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
|
|
|
#
|
2013-08-11 05:55:51 +08:00
|
|
|
# - MDB_USE_POSIX_SEM
|
|
|
|
# - MDB_DSYNC
|
|
|
|
# - MDB_FDATASYNC
|
2013-06-27 00:02:26 +08:00
|
|
|
# - MDB_USE_PWRITEV
|
|
|
|
#
|
2013-08-11 05:55:51 +08:00
|
|
|
# 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
|
2013-07-13 04:55:18 +08:00
|
|
|
THREADS = -pthread
|
2011-07-01 18:56:09 +08:00
|
|
|
OPT = -O2 -g
|
2013-07-13 04:55:18 +08:00
|
|
|
CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS)
|
2011-07-01 21:37:51 +08:00
|
|
|
LDLIBS =
|
2011-11-19 07:43:55 +08:00
|
|
|
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-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
|
2011-07-03 11:15:54 +08:00
|
|
|
mkdir testdb
|
2011-06-30 00:07:37 +08:00
|
|
|
./mtest && ./mdb_stat testdb
|
|
|
|
|
2012-12-01 04:30:51 +08:00
|
|
|
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
|
|
|
|
2012-12-01 04:30:51 +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
|
|
|
|
2012-12-01 04:30:51 +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 $@
|
|
|
|
|
2012-12-01 04:30:51 +08:00
|
|
|
%.o: %.c lmdb.h
|
2011-06-30 00:07:37 +08:00
|
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
|