Home | History | Annotate | Line # | Download | only in libprop
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2006/04/27 20:41:57 thorpej Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 USE_SHLIBDIR=	yes
      6 
      7 PROPLIBDIR=${NETBSDSRCDIR}/common/lib/libprop
      8 
      9 .include "${PROPLIBDIR}/Makefile.inc"
     10 
     11 CPPFLAGS+=-D_LIBPROP
     12 CPPFLAGS+=-D_REENTRANT -I${NETBSDSRCDIR}/lib/libc/include
     13 
     14 LIB=	prop
     15 
     16 MAN=	prop_array.3 prop_bool.3 prop_data.3 prop_dictionary.3 \
     17 	prop_number.3 prop_object.3 prop_string.3 proplib.3
     18 
     19 MLINKS+= prop_array.3 prop_array_add.3
     20 MLINKS+= prop_array.3 prop_array_capacity.3
     21 MLINKS+= prop_array.3 prop_array_copy.3
     22 MLINKS+= prop_array.3 prop_array_copy_mutable.3
     23 MLINKS+= prop_array.3 prop_array_count.3
     24 MLINKS+= prop_array.3 prop_array_create.3
     25 MLINKS+= prop_array.3 prop_array_create_with_capacity.3
     26 MLINKS+= prop_array.3 prop_array_ensure_capacity.3
     27 MLINKS+= prop_array.3 prop_array_get.3
     28 MLINKS+= prop_array.3 prop_array_iterator.3
     29 MLINKS+= prop_array.3 prop_array_make_immutable.3
     30 MLINKS+= prop_array.3 prop_array_mutable.3
     31 MLINKS+= prop_array.3 prop_array_remove.3
     32 MLINKS+= prop_array.3 prop_array_set.3
     33 
     34 MLINKS+= prop_bool.3 prop_bool_copy.3
     35 MLINKS+= prop_bool.3 prop_bool_create.3
     36 MLINKS+= prop_bool.3 prop_bool_true.3
     37 
     38 MLINKS+= prop_data.3 prop_data_copy.3
     39 MLINKS+= prop_data.3 prop_data_create_data.3
     40 MLINKS+= prop_data.3 prop_data_create_data_nocopy.3
     41 MLINKS+= prop_data.3 prop_data_data.3
     42 MLINKS+= prop_data.3 prop_data_data_nocopy.3
     43 MLINKS+= prop_data.3 prop_data_equals.3
     44 MLINKS+= prop_data.3 prop_data_equals_data.3
     45 MLINKS+= prop_data.3 prop_data_size.3
     46 
     47 MLINKS+= prop_dictionary.3 prop_dictionary_capacity.3
     48 MLINKS+= prop_dictionary.3 prop_dictionary_copy.3
     49 MLINKS+= prop_dictionary.3 prop_dictionary_copy_mutable.3
     50 MLINKS+= prop_dictionary.3 prop_dictionary_count.3
     51 MLINKS+= prop_dictionary.3 prop_dictionary_create.3
     52 MLINKS+= prop_dictionary.3 prop_dictionary_create_with_capacity.3
     53 MLINKS+= prop_dictionary.3 prop_dictionary_ensure_capacity.3
     54 MLINKS+= prop_dictionary.3 prop_dictionary_externalize.3
     55 MLINKS+= prop_dictionary.3 prop_dictionary_get.3
     56 MLINKS+= prop_dictionary.3 prop_dictionary_get_keysym.3
     57 MLINKS+= prop_dictionary.3 prop_dictionary_internalize.3
     58 MLINKS+= prop_dictionary.3 prop_dictionary_iterator.3
     59 MLINKS+= prop_dictionary.3 prop_dictionary_keysym_cstring_nocopy.3
     60 MLINKS+= prop_dictionary.3 prop_dictionary_make_immutable.3
     61 MLINKS+= prop_dictionary.3 prop_dictionary_mutable.3
     62 MLINKS+= prop_dictionary.3 prop_dictionary_remove.3
     63 MLINKS+= prop_dictionary.3 prop_dictionary_remove_keysym.3
     64 MLINKS+= prop_dictionary.3 prop_dictionary_set.3
     65 MLINKS+= prop_dictionary.3 prop_dictionary_set_keysym.3
     66 
     67 MLINKS+= prop_number.3 prop_number_copy.3
     68 MLINKS+= prop_number.3 prop_number_create_integer.3
     69 MLINKS+= prop_number.3 prop_number_equals.3
     70 MLINKS+= prop_number.3 prop_number_equals_integer.3
     71 MLINKS+= prop_number.3 prop_number_size.3
     72 MLINKS+= prop_number.3 prop_number_integer_value.3
     73 
     74 MLINKS+= prop_object.3 prop_object_iterator_next.3
     75 MLINKS+= prop_object.3 prop_object_iterator_release.3
     76 MLINKS+= prop_object.3 prop_object_iterator_reset.3
     77 MLINKS+= prop_object.3 prop_object_release.3
     78 MLINKS+= prop_object.3 prop_object_retain.3
     79 MLINKS+= prop_object.3 prop_object_type.3
     80 
     81 MLINKS+= prop_string.3 prop_string_append.3
     82 MLINKS+= prop_string.3 prop_string_append_cstring.3
     83 MLINKS+= prop_string.3 prop_string_copy.3
     84 MLINKS+= prop_string.3 prop_string_copy_mutable.3
     85 MLINKS+= prop_string.3 prop_string_create.3
     86 MLINKS+= prop_string.3 prop_string_create_cstring.3
     87 MLINKS+= prop_string.3 prop_string_create_cstring_nocopy.3
     88 MLINKS+= prop_string.3 prop_string_cstring.3
     89 MLINKS+= prop_string.3 prop_string_cstring_nocopy.3
     90 MLINKS+= prop_string.3 prop_string_equals.3
     91 MLINKS+= prop_string.3 prop_string_equals_cstring.3
     92 MLINKS+= prop_string.3 prop_string_mutable.3
     93 MLINKS+= prop_string.3 prop_string_size.3
     94 
     95 .include <bsd.lib.mk>
     96