Read-only mirror of official repo on openldap.org. Issues and pull requests here are ignored. Use OpenLDAP ITS for issues.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lmdb/libraries/libmdb/Makefile

40 lines
788 B

14 years ago
CC = gcc
W = -W -Wall -Wno-unused-parameter -Wbad-function-cast
14 years ago
OPT = -O2 -g
CFLAGS = -pthread $(OPT) $(W) $(XCFLAGS)
LDLIBS =
14 years ago
PROGS = mdb_stat mtest mtest2 mtest3
all: libmdb.a libmdb.so $(PROGS)
14 years ago
clean:
rm -rf $(PROGS) *.[ao] *.so *~ testdb
14 years ago
test: all
mkdir testdb
14 years ago
./mtest && ./mdb_stat testdb
libmdb.a: mdb.o midl.o
ar rs $@ mdb.o midl.o
14 years ago
libmdb.so: mdb.o midl.o
gcc -shared -o $@ mdb.o midl.o
mdb_stat: mdb_stat.o libmdb.a
mtest: mtest.o libmdb.a
mtest2: mtest2.o libmdb.a
mtest3: mtest3.o libmdb.a
mtest4: mtest4.o libmdb.a
mdb.o: mdb.c mdb.h midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c mdb.c
midl.o: midl.c midl.h
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c midl.c
%: %.o
14 years ago
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
%.o: %.c mdb.h
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<