Home | History | Annotate | Line # | Download | only in libprop
Makefile revision 1.9
      1  1.9  christos #	$NetBSD: Makefile,v 1.9 2006/10/15 19:07:38 christos 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.9  christos 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.5   thorpej MAN+=	prop_dictionary_copyin_ioctl.9
     21  1.5   thorpej MLINKS+= prop_dictionary_copyin_ioctl.9 prop_dictionary_copyout_ioctl.9
     22  1.5   thorpej 
     23  1.5   thorpej MAN+=	prop_dictionary_send_ioctl.3
     24  1.5   thorpej MLINKS+= prop_dictionary_send_ioctl.3 prop_dictionary_recv_ioctl.3
     25  1.7   thorpej MLINKS+= prop_dictionary_send_ioctl.3 prop_dictionary_sendrecv_ioctl.3
     26  1.5   thorpej 
     27  1.1   thorpej MLINKS+= prop_array.3 prop_array_add.3
     28  1.1   thorpej MLINKS+= prop_array.3 prop_array_capacity.3
     29  1.1   thorpej MLINKS+= prop_array.3 prop_array_copy.3
     30  1.1   thorpej MLINKS+= prop_array.3 prop_array_copy_mutable.3
     31  1.1   thorpej MLINKS+= prop_array.3 prop_array_count.3
     32  1.1   thorpej MLINKS+= prop_array.3 prop_array_create.3
     33  1.1   thorpej MLINKS+= prop_array.3 prop_array_create_with_capacity.3
     34  1.1   thorpej MLINKS+= prop_array.3 prop_array_ensure_capacity.3
     35  1.4   thorpej MLINKS+= prop_array.3 prop_array_equals.3
     36  1.6   thorpej MLINKS+= prop_array.3 prop_array_externalize.3
     37  1.6   thorpej MLINKS+= prop_array.3 prop_array_externalize_to_file.3
     38  1.1   thorpej MLINKS+= prop_array.3 prop_array_get.3
     39  1.6   thorpej MLINKS+= prop_array.3 prop_array_internalize.3
     40  1.6   thorpej MLINKS+= prop_array.3 prop_array_internalize_from_file.3
     41  1.1   thorpej MLINKS+= prop_array.3 prop_array_iterator.3
     42  1.1   thorpej MLINKS+= prop_array.3 prop_array_make_immutable.3
     43  1.1   thorpej MLINKS+= prop_array.3 prop_array_mutable.3
     44  1.1   thorpej MLINKS+= prop_array.3 prop_array_remove.3
     45  1.1   thorpej MLINKS+= prop_array.3 prop_array_set.3
     46  1.1   thorpej 
     47  1.1   thorpej MLINKS+= prop_bool.3 prop_bool_copy.3
     48  1.1   thorpej MLINKS+= prop_bool.3 prop_bool_create.3
     49  1.1   thorpej MLINKS+= prop_bool.3 prop_bool_true.3
     50  1.1   thorpej 
     51  1.1   thorpej MLINKS+= prop_data.3 prop_data_copy.3
     52  1.1   thorpej MLINKS+= prop_data.3 prop_data_create_data.3
     53  1.1   thorpej MLINKS+= prop_data.3 prop_data_create_data_nocopy.3
     54  1.1   thorpej MLINKS+= prop_data.3 prop_data_data.3
     55  1.1   thorpej MLINKS+= prop_data.3 prop_data_data_nocopy.3
     56  1.1   thorpej MLINKS+= prop_data.3 prop_data_equals.3
     57  1.1   thorpej MLINKS+= prop_data.3 prop_data_equals_data.3
     58  1.1   thorpej MLINKS+= prop_data.3 prop_data_size.3
     59  1.1   thorpej 
     60  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_capacity.3
     61  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_copy.3
     62  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_copy_mutable.3
     63  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_count.3
     64  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_create.3
     65  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_create_with_capacity.3
     66  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_ensure_capacity.3
     67  1.4   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_equals.3
     68  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_externalize.3
     69  1.6   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_externalize_to_file.3
     70  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_get.3
     71  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_get_keysym.3
     72  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_internalize.3
     73  1.6   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_internalize_from_file.3
     74  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_iterator.3
     75  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_keysym_cstring_nocopy.3
     76  1.4   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_keysym_equals.3
     77  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_make_immutable.3
     78  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_mutable.3
     79  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_remove.3
     80  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_remove_keysym.3
     81  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_set.3
     82  1.1   thorpej MLINKS+= prop_dictionary.3 prop_dictionary_set_keysym.3
     83  1.1   thorpej 
     84  1.6   thorpej MLINKS+= prop_ingest.3 prop_ingest_context_alloc.3
     85  1.6   thorpej MLINKS+= prop_ingest.3 prop_ingest_context_error.3
     86  1.6   thorpej MLINKS+= prop_ingest.3 prop_ingest_context_free.3
     87  1.6   thorpej MLINKS+= prop_ingest.3 prop_ingest_context_key.3
     88  1.6   thorpej MLINKS+= prop_ingest.3 prop_ingest_context_private.3
     89  1.6   thorpej MLINKS+= prop_ingest.3 prop_ingest_context_type.3
     90  1.6   thorpej MLINKS+= prop_ingest.3 prop_dictionary_ingest.3
     91  1.6   thorpej 
     92  1.1   thorpej MLINKS+= prop_number.3 prop_number_copy.3
     93  1.1   thorpej MLINKS+= prop_number.3 prop_number_create_integer.3
     94  1.8   thorpej MLINKS+= prop_number.3 prop_number_create_unsigned_integer.3
     95  1.1   thorpej MLINKS+= prop_number.3 prop_number_equals.3
     96  1.1   thorpej MLINKS+= prop_number.3 prop_number_equals_integer.3
     97  1.8   thorpej MLINKS+= prop_number.3 prop_number_equals_unsigned_integer.3
     98  1.1   thorpej MLINKS+= prop_number.3 prop_number_size.3
     99  1.8   thorpej MLINKS+= prop_number.3 prop_number_unsigned.3
    100  1.1   thorpej MLINKS+= prop_number.3 prop_number_integer_value.3
    101  1.8   thorpej MLINKS+= prop_number.3 prop_number_unsigned_integer_value.3
    102  1.1   thorpej 
    103  1.4   thorpej MLINKS+= prop_object.3 prop_object_equals.3
    104  1.1   thorpej MLINKS+= prop_object.3 prop_object_iterator_next.3
    105  1.1   thorpej MLINKS+= prop_object.3 prop_object_iterator_release.3
    106  1.1   thorpej MLINKS+= prop_object.3 prop_object_iterator_reset.3
    107  1.1   thorpej MLINKS+= prop_object.3 prop_object_release.3
    108  1.1   thorpej MLINKS+= prop_object.3 prop_object_retain.3
    109  1.1   thorpej MLINKS+= prop_object.3 prop_object_type.3
    110  1.1   thorpej 
    111  1.1   thorpej MLINKS+= prop_string.3 prop_string_append.3
    112  1.1   thorpej MLINKS+= prop_string.3 prop_string_append_cstring.3
    113  1.1   thorpej MLINKS+= prop_string.3 prop_string_copy.3
    114  1.1   thorpej MLINKS+= prop_string.3 prop_string_copy_mutable.3
    115  1.1   thorpej MLINKS+= prop_string.3 prop_string_create.3
    116  1.1   thorpej MLINKS+= prop_string.3 prop_string_create_cstring.3
    117  1.1   thorpej MLINKS+= prop_string.3 prop_string_create_cstring_nocopy.3
    118  1.1   thorpej MLINKS+= prop_string.3 prop_string_cstring.3
    119  1.1   thorpej MLINKS+= prop_string.3 prop_string_cstring_nocopy.3
    120  1.1   thorpej MLINKS+= prop_string.3 prop_string_equals.3
    121  1.1   thorpej MLINKS+= prop_string.3 prop_string_equals_cstring.3
    122  1.1   thorpej MLINKS+= prop_string.3 prop_string_mutable.3
    123  1.1   thorpej MLINKS+= prop_string.3 prop_string_size.3
    124  1.1   thorpej 
    125  1.1   thorpej .include <bsd.lib.mk>
    126