1 #
   2 # CDDL HEADER START
   3 #
   4 # The contents of this file are subject to the terms of the
   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 #
  22 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23 # Use is subject to license terms.
  24 #
  25 # Copyright (c) 2018, Joyent, Inc.
  26 
  27 LIBRARY= libdb2.a
  28 VERS= .1
  29 
  30 # btree  
  31 BTREE_OBJS= \
  32         bt_close.o \
  33         bt_conv.o \
  34         bt_debug.o \
  35         bt_delete.o \
  36         bt_get.o \
  37         bt_open.o \
  38         bt_overflow.o \
  39         bt_page.o \
  40         bt_put.o \
  41         bt_search.o \
  42         bt_seq.o \
  43         bt_split.o \
  44         bt_utils.o 
  45  
  46 # db 
  47 DB_OBJS= db.o
  48 
  49 # hash
  50 HASH_OBJS= \
  51         hash.o \
  52         hash_bigkey.o \
  53         hash_func.o \
  54         hash_log2.o \
  55         hash_page.o \
  56         hsearch.o \
  57         dbm.o
  58 
  59 # mpool
  60 MPOOL_OBJS= mpool.o
  61 
  62 # recno
  63 RECNO_OBJS= \
  64         rec_close.o \
  65         rec_delete.o \
  66         rec_get.o \
  67         rec_open.o \
  68         rec_put.o \
  69         rec_search.o \
  70         rec_seq.o \
  71         rec_utils.o
  72 
  73 OBJECTS= \
  74         $(BTREE_OBJS) $(DB_OBJS) $(HASH_OBJS) $(MPOOL_OBJS) $(RECNO_OBJS)
  75 
  76 # include library definitions
  77 include $(SRC)/lib/krb5/Makefile.lib
  78 
  79 SRCS=   $(BTREE_OBJS:%.o=../btree/%.c) \
  80         $(DB_OBJS:%.o=../db/%.c) \
  81         $(HASH_OBJS:%.o=../hash/%.c) \
  82         $(MPOOL_OBJS:%.o=../mpool/%.c) \
  83         $(RECNO_OBJS:%.o=../recno/%.c)
  84 
  85 LIBS=           $(DYNLIB)
  86 
  87 include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
  88 
  89 POFILE = $(LIBRARY:%.a=%.po)
  90 POFILES = generic.po
  91 
  92 #override liblink
  93 INS.liblink=    -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
  94 
  95 CPPFLAGS +=     -DHAVE_CONFIG_H \
  96                 -I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/mpool \
  97                 -I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/db \
  98                 -I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/hash \
  99                 -I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/btree \
 100                 -I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/recno \
 101                 -I$(SRC)/lib/krb5/plugins/kdb/db2/libdb2/include \
 102                 -I$(SRC)/lib/gss_mechs/mech_krb5/include  #for db-ndbm.h
 103 
 104 CFLAGS +=       $(CCVERBOSE) -I..
 105 CERRWARN +=     -_gcc=-Wno-uninitialized
 106 
 107 # not linted
 108 SMATCH=off
 109 
 110 LDLIBS +=       -lc
 111 
 112 # Identify that this library is an interposer (on dbm_ routines from libc.so.1).
 113 # This identification insures runtime symbol lookup resolves to this library
 114 # (before libc.so.1) regardless of dependency link order.
 115 DYNFLAGS +=     $(ZINTERPOSE)
 116 
 117 .KEEP_STATE:
 118 
 119 all:    $(LIBS)
 120 
 121 lint:   lintcheck
 122 
 123 # include library targets
 124 include $(SRC)/lib/krb5/Makefile.targ
 125 
 126 pics/%.o: ../btree/%.c
 127         $(COMPILE.c)  -o $@ $<
 128         $(POST_PROCESS_O)
 129 
 130 pics/%.o: ../db/%.c
 131         $(COMPILE.c)  -o $@ $<
 132         $(POST_PROCESS_O)
 133 
 134 pics/%.o: ../hash/%.c
 135         $(COMPILE.c)  -o $@ $<
 136         $(POST_PROCESS_O)
 137 
 138 pics/%.o: ../mpool/%.c
 139         $(COMPILE.c)  -o $@ $<
 140         $(POST_PROCESS_O)
 141 
 142 pics/%.o: ../recno/%.c
 143         $(COMPILE.c)  -o $@ $<
 144         $(POST_PROCESS_O)
 145 
 146 FRC:
 147 
 148 generic.po: FRC
 149         $(RM) messages.po
 150         $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext ../hash/*.[ch]`
 151         $(SED) "/^domain/d" messages.po > $@
 152         $(RM) messages.po