diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db/Makefile b/db/Makefile index 9f45e9fea2..2d742d133a 100644 --- a/db/Makefile +++ b/db/Makefile @@ -51,3 +51,13 @@ endif # This ensures they will load libc.so for needed symbols if loaded by # a statically-linked program that hasn't already loaded it. $(objpfx)libdb.so: $(common-objpfx)libc.so + +subdir_install: $(inst_libdir)/libndbm.a +$(inst_libdir)/libndbm.a: $(inst_libdir)/libdb.a + $(make-link) + +ifeq ($(build-shared),yes) +subdir_install: $(inst_libdir)/libndbm.so +$(inst_libdir)/libndbm.so: $(inst_libdir)/libdb.so + $(make-link) +endif |