mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
Make a shared library too
This commit is contained in:
parent
785d8e184c
commit
170703b0e4
1 changed files with 11 additions and 2 deletions
|
|
@ -5,10 +5,10 @@ CFLAGS = -pthread $(OPT) $(W) $(XCFLAGS)
|
|||
LDLIBS =
|
||||
|
||||
PROGS = mdb_stat mtest mtest2 mtest3
|
||||
all: libmdb.a $(PROGS)
|
||||
all: libmdb.a libmdb.so $(PROGS)
|
||||
|
||||
clean:
|
||||
rm -rf $(PROGS) *.[ao] *~ testdb
|
||||
rm -rf $(PROGS) *.[ao] *.so *~ testdb
|
||||
|
||||
test: all
|
||||
mkdir testdb
|
||||
|
|
@ -17,11 +17,20 @@ test: all
|
|||
libmdb.a: mdb.o idl.o
|
||||
ar rs $@ mdb.o idl.o
|
||||
|
||||
libmdb.so: mdb.o idl.o
|
||||
gcc -shared -o $@ mdb.o idl.o
|
||||
|
||||
mdb_stat: mdb_stat.o libmdb.a
|
||||
mtest: mtest.o libmdb.a
|
||||
mtest2: mtest2.o libmdb.a
|
||||
mtest3: mtest3.o libmdb.a
|
||||
|
||||
mdb.o: mdb.c mdb.h idl.h
|
||||
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c mdb.c
|
||||
|
||||
idl.o: idl.c idl.h
|
||||
$(CC) $(CFLAGS) -fPIC $(CPPFLAGS) -c idl.c
|
||||
|
||||
%: %.o
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue