Add install target

vmware
Howard Chu 12 years ago
parent 13f3bcd59c
commit 2a94ebced6
  1. 15
      libraries/libmdb/Makefile

@ -4,9 +4,18 @@ OPT = -O2 -g
CFLAGS = -pthread $(OPT) $(W) $(XCFLAGS)
LDLIBS =
SOLIBS =
PROGS = mdb_stat mdb_copy mtest mtest2 mtest3 mtest4 mtest5
all: liblmdb.a liblmdb.so $(PROGS)
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
clean:
rm -rf $(PROGS) *.[ao] *.so *~ testdb

Loading…
Cancel
Save