home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / db / Makefile < prev    next >
Encoding:
Makefile  |  1994-10-25  |  1.3 KB  |  47 lines

  1. #
  2. # This is Makefile of db for Linux
  3. #
  4.  
  5. override DEBUG=false
  6. override PROFILE=false
  7. #override CHECKER=false
  8.  
  9. override SHLIB=libdb
  10. JUMP_LIB=libdb
  11.  
  12. TOPDIR=..
  13.  
  14. include $(TOPDIR)/Makeconfig
  15. include $(TOPDIR)/Makerules
  16.  
  17. override STATIC_LIB=$(STATIC_DIR)/libdb.a
  18. override SHARED_LIB=$(SHARED_DIR)/libdb.a
  19. override CHECKER_LIB=$(CHECKER_DIR)/libdb.a
  20.  
  21. DB_CFLAGS= -include $(CROSS_INCDIR)/bsd/bsd.h -D__DBINTERFACE_PRIVATE
  22. BASE_CFLAGS := $(BASE_CFLAGS) $(DB_CFLAGS)
  23.  
  24. DIRS:=
  25.  
  26. VPATH=    ./hash ./btree ./db ./mpool ./recno ./clib
  27.  
  28. SRCS=   hash.c hash_bigkey.c hash_buf.c hash_func.c hash_log2.c \
  29.     hash_page.c hsearch.c ndbm.c bt_close.c bt_conv.c bt_debug.c \
  30.     bt_delete.c bt_get.c bt_open.c bt_overflow.c bt_page.c \
  31.     bt_put.c bt_search.c bt_seq.c bt_split.c bt_utils.c \
  32.     db.c mpool.c rec_close.c rec_delete.c rec_get.c rec_open.c \
  33.     rec_put.c rec_search.c rec_seq.c rec_utils.c snprintf.c
  34.  
  35. SRCS=   hash.c hash_bigkey.c hash_buf.c hash_func.c hash_log2.c \
  36.     hash_page.c hsearch.c ndbm.c bt_close.c bt_conv.c bt_debug.c \
  37.     bt_delete.c bt_get.c bt_open.c bt_overflow.c bt_page.c \
  38.     bt_put.c bt_search.c bt_seq.c bt_split.c bt_utils.c \
  39.     db.c mpool.c rec_close.c rec_delete.c rec_get.c rec_open.c \
  40.     rec_put.c rec_search.c rec_seq.c rec_utils.c
  41.  
  42. ASMS= $(SRCS:.c=.s)
  43. OBJS= $(SRCS:.c=.o)
  44. ALIASES=
  45.  
  46. include $(TOPDIR)/Maketargets
  47.