home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / dbm / src / Makefile < prev    next >
Encoding:
Makefile  |  1998-04-08  |  480 b   |  34 lines

  1. #! gmake
  2.  
  3. DEPTH = ../..
  4.  
  5. MODULE = dbm
  6.  
  7. CSRCS = db.c       \
  8.     h_bigkey.c \
  9.     h_func.c   \
  10.     h_log2.c   \
  11.     h_page.c   \
  12.     hash.c       \
  13.     hash_buf.c \
  14.     hsearch.c  \
  15.     memmove.c  \
  16.     mktemp.c   \
  17.     ndbm.c       \
  18.     snprintf.c \
  19.     strerror.c \
  20.     nsres.c       \
  21.     $(NULL)
  22.  
  23. LIBRARY_NAME = dbm
  24.  
  25. include $(DEPTH)/config/rules.mk
  26.  
  27. DEFINES += -DMEMMOVE -D__DBINTERFACE_PRIVATE $(SECURITY_FLAG) -DNSPR20=1
  28.  
  29. INCLUDES += -I../include
  30.  
  31. ifeq ($(OS_ARCH),AIX)
  32.     OS_LIBS += -lc_r
  33. endif
  34.