Annotation of embedaddon/libpdel/util/Makefile.inc, revision 1.1

1.1     ! misho       1: # $Id: Makefile.inc,v 1.10 2002/05/23 22:25:51 archie Exp $
        !             2: 
        !             3: util_PATH+=    ${PDELTOP}/util
        !             4: 
        !             5: util_SRCS+=    ghash.c \
        !             6:                gtree.c \
        !             7:                mesg_port.c \
        !             8:                paction.c \
        !             9:                pevent.c \
        !            10:                rsa_util.c \
        !            11:                string_quote.c \
        !            12:                tinfo.c \
        !            13:                typed_mem.c
        !            14: 
        !            15: util_INCS+=    ghash.h \
        !            16:                gtree.h \
        !            17:                mesg_port.h \
        !            18:                paction.h \
        !            19:                pevent.h \
        !            20:                rsa_util.h \
        !            21:                string_quote.h \
        !            22:                tinfo.h \
        !            23:                typed_mem.h
        !            24: 
        !            25: util_MAN+=     ghash.3
        !            26: util_MLINKS+=  ghash.3 ghash_arg.3
        !            27: util_MLINKS+=  ghash.3 ghash_create.3
        !            28: util_MLINKS+=  ghash.3 ghash_destroy.3
        !            29: util_MLINKS+=  ghash.3 ghash_dump.3
        !            30: util_MLINKS+=  ghash.3 ghash_get.3
        !            31: util_MLINKS+=  ghash.3 ghash_iter_create.3
        !            32: util_MLINKS+=  ghash.3 ghash_iter_destroy.3
        !            33: util_MLINKS+=  ghash.3 ghash_iter_has_next.3
        !            34: util_MLINKS+=  ghash.3 ghash_iter_next.3
        !            35: util_MLINKS+=  ghash.3 ghash_iter_remove.3
        !            36: util_MLINKS+=  ghash.3 ghash_put.3
        !            37: util_MLINKS+=  ghash.3 ghash_remove.3
        !            38: util_MLINKS+=  ghash.3 ghash_size.3
        !            39: util_MLINKS+=  ghash.3 ghash_walk_init.3
        !            40: util_MLINKS+=  ghash.3 ghash_walk_next.3
        !            41: 
        !            42: util_MAN+=     gtree.3
        !            43: util_MLINKS+=  gtree.3 gtree_arg.3
        !            44: util_MLINKS+=  gtree.3 gtree_create.3
        !            45: util_MLINKS+=  gtree.3 gtree_destroy.3
        !            46: util_MLINKS+=  gtree.3 gtree_dump.3
        !            47: util_MLINKS+=  gtree.3 gtree_first.3
        !            48: util_MLINKS+=  gtree.3 gtree_get.3
        !            49: util_MLINKS+=  gtree.3 gtree_last.3
        !            50: util_MLINKS+=  gtree.3 gtree_next.3
        !            51: util_MLINKS+=  gtree.3 gtree_prev.3
        !            52: util_MLINKS+=  gtree.3 gtree_print.3
        !            53: util_MLINKS+=  gtree.3 gtree_put.3
        !            54: util_MLINKS+=  gtree.3 gtree_remove.3
        !            55: util_MLINKS+=  gtree.3 gtree_size.3
        !            56: util_MLINKS+=  gtree.3 gtree_traverse.3
        !            57: 
        !            58: util_MAN+=     mesg_port.3
        !            59: util_MLINKS+=  mesg_port.3 mesg_port_create.3
        !            60: util_MLINKS+=  mesg_port.3 mesg_port_destroy.3
        !            61: util_MLINKS+=  mesg_port.3 mesg_port_get.3
        !            62: util_MLINKS+=  mesg_port.3 mesg_port_put.3
        !            63: util_MLINKS+=  mesg_port.3 mesg_port_qlen.3
        !            64: 
        !            65: util_MAN+=     paction.3
        !            66: util_MLINKS+=  paction.3 paction_start.3
        !            67: util_MLINKS+=  paction.3 paction_cancel.3
        !            68: 
        !            69: util_MAN+=     pevent.3
        !            70: util_MLINKS+=  pevent.3 pevent_ctx_create.3
        !            71: util_MLINKS+=  pevent.3 pevent_ctx_destroy.3
        !            72: util_MLINKS+=  pevent.3 pevent_ctx_count.3
        !            73: util_MLINKS+=  pevent.3 pevent_register.3
        !            74: util_MLINKS+=  pevent.3 pevent_unregister.3
        !            75: 
        !            76: util_MAN+=     rsa_util_sign.3
        !            77: util_MLINKS+=  rsa_util_sign.3 rsa_util_verify.3
        !            78: util_MLINKS+=  rsa_util_sign.3 rsa_util_verify_priv.3
        !            79: 
        !            80: util_MAN+=     string_enquote.3
        !            81: util_MLINKS+=  string_enquote.3 string_dequote.3
        !            82: 
        !            83: util_MAN+=     tinfo.3
        !            84: util_MLINKS+=  tinfo.3 TINFO_INIT.3
        !            85: util_MLINKS+=  tinfo.3 tinfo_get.3
        !            86: util_MLINKS+=  tinfo.3 tinfo_set.3
        !            87: util_MLINKS+=  tinfo.3 tinfo_set_nocopy.3
        !            88: 
        !            89: util_MAN+=     typed_mem.3
        !            90: util_MLINKS+=  typed_mem.3 ASPRINTF.3
        !            91: util_MLINKS+=  typed_mem.3 CALLOC.3
        !            92: util_MLINKS+=  typed_mem.3 FREE.3
        !            93: util_MLINKS+=  typed_mem.3 MALLOC.3
        !            94: util_MLINKS+=  typed_mem.3 REALLOC.3
        !            95: util_MLINKS+=  typed_mem.3 REALLOCF.3
        !            96: util_MLINKS+=  typed_mem.3 STRDUP.3
        !            97: util_MLINKS+=  typed_mem.3 VASPRINTF.3
        !            98: util_MLINKS+=  typed_mem.3 typed_mem_dump.3
        !            99: util_MLINKS+=  typed_mem.3 typed_mem_enable.3
        !           100: util_MLINKS+=  typed_mem.3 typed_mem_usage.3
        !           101: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>