diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/db/Makefile b/db/Makefile index 48e2570..2c678df 100644 --- a/db/Makefile +++ b/db/Makefile @@ -8,14 +8,16 @@ subdir = db subdir-dirs = btree db hash mpool recno vpath %.c $(subdir-dirs) -routines := bt_close bt_conv bt_debug bt_delete bt_get bt_open bt_overflow \ - bt_page bt_put bt_search bt_seq bt_split bt_utils \ - db \ - hash hash_bigkey hash_buf hash_func hash_log2 hash_page \ - ndbm \ - mpool \ - rec_close rec_delete rec_get rec_open rec_put rec_search \ - rec_seq rec_utils +extra-libs := libdb +libdb-routines := bt_close bt_conv bt_debug bt_delete bt_get \ + bt_open bt_overflow bt_page bt_put bt_search \ + bt_seq bt_split bt_utils \ + db \ + hash hash_bigkey hash_buf hash_func hash_log2 hash_page \ + ndbm \ + mpool \ + rec_close rec_delete rec_get rec_open rec_put rec_search \ + rec_seq rec_utils headers := db.h mpool.h ndbm.h distribute := compat.h \ |