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

24 lines
442 B

14 years ago
CC = gcc
W = -W -Wall -Wno-unused-parameter -Wcast-qual -Wbad-function-cast
14 years ago
OPT = -O2 -g
CFLAGS = -pthread $(OPT) $(W) $(XCFLAGS)
LDLIBS =
14 years ago
all: mtest mdb_stat
clean:
rm -rf mtest mdb_stat *.[ao] *~ testdb
14 years ago
test: all
mkdir testdb
14 years ago
./mtest && ./mdb_stat testdb
14 years ago
mdb_stat: mdb_stat.o mdb.o idl.o
mtest: mtest.o mdb.o idl.o
14 years ago
%: %.o mdb.o
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
%.o: %.c mdb.h
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<