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.
53 lines
1.1 KiB
53 lines
1.1 KiB
14 years ago
|
CC = gcc
|
||
13 years ago
|
W = -W -Wall -Wno-unused-parameter -Wbad-function-cast
|
||
14 years ago
|
OPT = -O2 -g
|
||
|
CFLAGS = -pthread $(OPT) $(W) $(XCFLAGS)
|
||
14 years ago
|
LDLIBS =
|
||
13 years ago
|
SOLIBS =
|
||
12 years ago
|
prefix = /usr/local
|
||
|
|
||
|
IHDRS = lmdb.h
|
||
|
ILIBS = liblmdb.a liblmdb.so
|
||
|
IPROGS = mdb_stat mdb_copy
|
||
|
PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5
|
||
|
all: $(ILIBS) $(PROGS)
|
||
|
|
||
|
install: $(ILIBS) $(IPROGS) $(IHDRS)
|
||
|
cp $(IPROGS) $(prefix)/bin
|
||
|
cp $(ILIBS) $(prefix)/lib
|
||
|
cp $(IHDRS) $(prefix)/include
|
||
14 years ago
|
|
||
|
clean:
|
||
13 years ago
|
rm -rf $(PROGS) *.[ao] *.so *~ testdb
|
||
14 years ago
|
|
||
|
test: all
|
||
14 years ago
|
mkdir testdb
|
||
14 years ago
|
./mtest && ./mdb_stat testdb
|
||
|
|
||
12 years ago
|
liblmdb.a: mdb.o midl.o
|
||
13 years ago
|
ar rs $@ mdb.o midl.o
|
||
14 years ago
|
|
||
12 years ago
|
liblmdb.so: mdb.o midl.o
|
||
12 years ago
|
gcc -pthread -shared -o $@ mdb.o midl.o $(SOLIBS)
|
||
13 years ago
|
|
||
12 years ago
|
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
|
||
13 years ago
|
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c mdb.c
|
||
|
|
||
13 years ago
|
midl.o: midl.c midl.h
|
||
|
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c midl.c
|
||
13 years ago
|
|
||
13 years ago
|
%: %.o
|
||
14 years ago
|
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
|
||
|
|
||
12 years ago
|
%.o: %.c lmdb.h
|
||
14 years ago
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
|