Home | History | Annotate | Line # | Download | only in libprop
Makefile revision 1.13
      1  1.13  thorpej #	$NetBSD: Makefile,v 1.13 2006/10/26 18:51:21 thorpej Exp $
      2   1.1  thorpej 
      3   1.1  thorpej .include <bsd.own.mk>
      4   1.1  thorpej 
      5   1.1  thorpej USE_SHLIBDIR=	yes
      6   1.1  thorpej 
      7   1.1  thorpej PROPLIBDIR=${NETBSDSRCDIR}/common/lib/libprop
      8   1.1  thorpej 
      9   1.1  thorpej .include "${PROPLIBDIR}/Makefile.inc"
     10   1.1  thorpej 
     11   1.1  thorpej CPPFLAGS+=-D_LIBPROP
     12   1.1  thorpej CPPFLAGS+=-D_REENTRANT -I${NETBSDSRCDIR}/lib/libc/include
     13   1.1  thorpej 
     14  1.11   martin LINTFLAGS+=-w
     15   1.1  thorpej LIB=	prop
     16   1.1  thorpej 
     17   1.1  thorpej MAN=	prop_array.3 prop_bool.3 prop_data.3 prop_dictionary.3 \
     18   1.6  thorpej 	prop_ingest.3 prop_number.3 prop_object.3 prop_string.3 proplib.3
     19   1.1  thorpej 
     20  1.13  thorpej MAN+=	prop_copyin_ioctl.9
     21  1.13  thorpej MLINKS+= prop_copyin_ioctl.9 prop_array_copyin_ioctl.9
     22  1.13  thorpej MLINKS+= prop_copyin_ioctl.9 prop_array_copyout_ioctl.9
     23  1.13  thorpej MLINKS+= prop_copyin_ioctl.9 prop_dictionary_copyin_ioctl.9
     24  1.13  thorpej MLINKS+= prop_copyin_ioctl.9 prop_dictionary_copyout_ioctl.9
     25  1.13  thorpej 
     26  1.13  thorpej MAN+=	prop_send_ioctl.3
     27  1.13  thorpej MLINKS+= prop_send_ioctl.3 prop_array_send_ioctl.3
     28  1.13  thorpej MLINKS+= prop_send_ioctl.3 prop_array_recv_ioctl.3
     29  1.13  thorpej MLINKS+= prop_send_ioctl.3 prop_dictionary_send_ioctl.3
     30  1.13  thorpej MLINKS+= prop_send_ioctl.3 prop_dictionary_recv_ioctl.3
     31  1.13  thorpej MLINKS+= prop_send_ioctl.3 prop_dictionary_sendrecv_ioctl.3
     32   1.5  thorpej 
     33  1.12  thorpej MAN+=	prop_dictionary_util.3
     34  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_bool.3
     35  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_bool.3
     36  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int8.3
     37  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint8.3
     38  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int8.3
     39  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint8.3
     40  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int16.3
     41  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint16.3
     42  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int16.3
     43  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint16.3
     44  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int32.3
     45  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint32.3
     46  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int32.3
     47  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint32.3
     48  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int64.3
     49  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint64.3
     50  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int64.3
     51  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint64.3
     52  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_cstring.3
     53  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_cstring.3
     54  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_get_cstring_nocopy.3
     55  1.12  thorpej MLINKS+= prop_dictionary_util.3 prop_dictionary_set_cstring_nocopy.3
     56  1.12  thorpej 
     57   1.1  thorpej MLINKS+= prop_array.3 prop_array_add.3
     58   1.1  thorpej MLINKS+= prop_array.3 prop_array_capacity.3
     59   1.1  thorpej MLINKS+= prop_array.3 prop_array_copy.3
     60   1.1  thorpej MLINKS+= prop_array.3 prop_array_copy_mutable.3
     61   1.1  thorpej MLINKS+= prop_array.3 prop_array_count.3
     62   1.1  thorpej MLINKS+= prop_array.3 prop_array_create.3
     63   1.1  thorpej MLINKS+= prop_array.3 prop_array_create_with_capacity.3
     64   1.1  thorpej MLINKS+= prop_array.3 prop_array_ensure_capacity.3
     65   1.4  thorpej MLINKS+= prop_array.3 prop_array_equals.3
     66   1.6  thorpej MLINKS+= prop_array.3 prop_array_externalize.3
     67   1.6  thorpej MLINKS+= prop_array.3 prop_array_externalize_to_file.3
     68   1.1  thorpej MLINKS+= prop_array.3 prop_array_get.3
     69   1.6  thorpej MLINKS+= prop_array.3 prop_array_internalize.3
     70   1.6  thorpej MLINKS+= prop_array.3 prop_array_internalize_from_file.3
     71   1.1  thorpej MLINKS+= prop_array.3 prop_array_iterator.3
     72   1.1  thorpej MLINKS+= prop_array.3 prop_array_make_immutable.3
     73   1.1  thorpej MLINKS+= prop_array.3 prop_array_mutable.3
     74   1.1  thorpej MLINKS+= prop_array.3 prop_array_remove.3
     75   1.1  thorpej MLINKS+= prop_array.3 prop_array_set.3
     76   1.1  thorpej 
     77   1.1  thorpej MLINKS+= prop_bool.3 prop_bool_copy.3
     78   1.1  thorpej MLINKS+= prop_bool.3 prop_bool_create.3
     79   1.1  thorpej MLINKS+= prop_bool.3 prop_bool_true.3
     80   1.1  thorpej 
     81   1.1  thorpej MLINKS+= prop_data.3 prop_data_copy.3
     82   1.1  thorpej MLINKS+= prop_data.3 prop_data_create_data.3
     83   1.1  thorpej MLINKS+= prop_data.3 prop_data_create_data_nocopy.3
     84   1.1  thorpej MLINKS+= prop_data.3 prop_data_data.3
     85   1.1  thorpej MLINKS+= prop_data.3 prop_data_data_nocopy.3
     86   1.1  thorpej MLINKS+= prop_data.3 prop_data_equals.3
     87   1.1  thorpej MLINKS+= prop_data.3 prop_data_equals_data.3
     88   1.1  thorpej MLINKS+= prop_data.3 prop_data_size.3
     89   1.1  thorpej 
     90   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_capacity.3
     91   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_copy.3
     92   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_copy_mutable.3
     93   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_count.3
     94   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_create.3
     95   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_create_with_capacity.3
     96   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_ensure_capacity.3
     97   1.4  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_equals.3
     98   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_externalize.3
     99   1.6  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_externalize_to_file.3
    100   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_get.3
    101   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_get_keysym.3
    102   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_internalize.3
    103   1.6  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_internalize_from_file.3
    104   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_iterator.3
    105   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_keysym_cstring_nocopy.3
    106   1.4  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_keysym_equals.3
    107   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_make_immutable.3
    108   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_mutable.3
    109   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_remove.3
    110   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_remove_keysym.3
    111   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_set.3
    112   1.1  thorpej MLINKS+= prop_dictionary.3 prop_dictionary_set_keysym.3
    113   1.1  thorpej 
    114   1.6  thorpej MLINKS+= prop_ingest.3 prop_ingest_context_alloc.3
    115   1.6  thorpej MLINKS+= prop_ingest.3 prop_ingest_context_error.3
    116   1.6  thorpej MLINKS+= prop_ingest.3 prop_ingest_context_free.3
    117   1.6  thorpej MLINKS+= prop_ingest.3 prop_ingest_context_key.3
    118   1.6  thorpej MLINKS+= prop_ingest.3 prop_ingest_context_private.3
    119   1.6  thorpej MLINKS+= prop_ingest.3 prop_ingest_context_type.3
    120   1.6  thorpej MLINKS+= prop_ingest.3 prop_dictionary_ingest.3
    121   1.6  thorpej 
    122   1.1  thorpej MLINKS+= prop_number.3 prop_number_copy.3
    123   1.1  thorpej MLINKS+= prop_number.3 prop_number_create_integer.3
    124   1.8  thorpej MLINKS+= prop_number.3 prop_number_create_unsigned_integer.3
    125   1.1  thorpej MLINKS+= prop_number.3 prop_number_equals.3
    126   1.1  thorpej MLINKS+= prop_number.3 prop_number_equals_integer.3
    127   1.8  thorpej MLINKS+= prop_number.3 prop_number_equals_unsigned_integer.3
    128   1.1  thorpej MLINKS+= prop_number.3 prop_number_size.3
    129   1.8  thorpej MLINKS+= prop_number.3 prop_number_unsigned.3
    130   1.1  thorpej MLINKS+= prop_number.3 prop_number_integer_value.3
    131   1.8  thorpej MLINKS+= prop_number.3 prop_number_unsigned_integer_value.3
    132   1.1  thorpej 
    133   1.4  thorpej MLINKS+= prop_object.3 prop_object_equals.3
    134   1.1  thorpej MLINKS+= prop_object.3 prop_object_iterator_next.3
    135   1.1  thorpej MLINKS+= prop_object.3 prop_object_iterator_release.3
    136   1.1  thorpej MLINKS+= prop_object.3 prop_object_iterator_reset.3
    137   1.1  thorpej MLINKS+= prop_object.3 prop_object_release.3
    138   1.1  thorpej MLINKS+= prop_object.3 prop_object_retain.3
    139   1.1  thorpej MLINKS+= prop_object.3 prop_object_type.3
    140   1.1  thorpej 
    141   1.1  thorpej MLINKS+= prop_string.3 prop_string_append.3
    142   1.1  thorpej MLINKS+= prop_string.3 prop_string_append_cstring.3
    143   1.1  thorpej MLINKS+= prop_string.3 prop_string_copy.3
    144   1.1  thorpej MLINKS+= prop_string.3 prop_string_copy_mutable.3
    145   1.1  thorpej MLINKS+= prop_string.3 prop_string_create.3
    146   1.1  thorpej MLINKS+= prop_string.3 prop_string_create_cstring.3
    147   1.1  thorpej MLINKS+= prop_string.3 prop_string_create_cstring_nocopy.3
    148   1.1  thorpej MLINKS+= prop_string.3 prop_string_cstring.3
    149   1.1  thorpej MLINKS+= prop_string.3 prop_string_cstring_nocopy.3
    150   1.1  thorpej MLINKS+= prop_string.3 prop_string_equals.3
    151   1.1  thorpej MLINKS+= prop_string.3 prop_string_equals_cstring.3
    152   1.1  thorpej MLINKS+= prop_string.3 prop_string_mutable.3
    153   1.1  thorpej MLINKS+= prop_string.3 prop_string_size.3
    154   1.1  thorpej 
    155   1.1  thorpej .include <bsd.lib.mk>
    156