1# $NetBSD: Makefile,v 1.20 2012/03/21 05:37:43 matt Exp $ 2 3.include <bsd.own.mk> 4 5WARNS?=5 6USE_SHLIBDIR= yes 7 8PROPLIBDIR=${NETBSDSRCDIR}/common/lib/libprop 9 10.include "${PROPLIBDIR}/Makefile.inc" 11 12CPPFLAGS+=-D_LIBPROP 13# LSC, for MINIX, _REENTRANT unsupported 14CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libc/include # -D_REENTRANT 15 16LINTFLAGS+=-w 17LIB= prop 18 19MAN= prop_array.3 prop_bool.3 prop_data.3 prop_dictionary.3 \ 20 prop_ingest.3 prop_number.3 prop_object.3 prop_string.3 proplib.3 21 22MAN+= prop_copyin_ioctl.9 23MLINKS+= prop_copyin_ioctl.9 prop_array_copyin_ioctl.9 24MLINKS+= prop_copyin_ioctl.9 prop_array_copyout_ioctl.9 25MLINKS+= prop_copyin_ioctl.9 prop_dictionary_copyin_ioctl.9 26MLINKS+= prop_copyin_ioctl.9 prop_dictionary_copyout_ioctl.9 27 28MAN+= prop_send_ioctl.3 29MLINKS+= prop_send_ioctl.3 prop_array_send_ioctl.3 30MLINKS+= prop_send_ioctl.3 prop_array_recv_ioctl.3 31MLINKS+= prop_send_ioctl.3 prop_dictionary_send_ioctl.3 32MLINKS+= prop_send_ioctl.3 prop_dictionary_recv_ioctl.3 33MLINKS+= prop_send_ioctl.3 prop_dictionary_sendrecv_ioctl.3 34 35MAN+= prop_send_syscall.3 36MLINKS+= prop_send_syscall.3 prop_array_send_syscall.3 37MLINKS+= prop_send_syscall.3 prop_array_recv_syscall.3 38MLINKS+= prop_send_syscall.3 prop_dictionary_send_syscall.3 39MLINKS+= prop_send_syscall.3 prop_dictionary_recv_syscall.3 40 41MAN+= prop_dictionary_util.3 42MLINKS+= prop_dictionary_util.3 prop_dictionary_get_bool.3 43MLINKS+= prop_dictionary_util.3 prop_dictionary_set_bool.3 44MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int8.3 45MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint8.3 46MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int8.3 47MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint8.3 48MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int16.3 49MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint16.3 50MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int16.3 51MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint16.3 52MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int32.3 53MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint32.3 54MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int32.3 55MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint32.3 56MLINKS+= prop_dictionary_util.3 prop_dictionary_get_int64.3 57MLINKS+= prop_dictionary_util.3 prop_dictionary_get_uint64.3 58MLINKS+= prop_dictionary_util.3 prop_dictionary_set_int64.3 59MLINKS+= prop_dictionary_util.3 prop_dictionary_set_uint64.3 60MLINKS+= prop_dictionary_util.3 prop_dictionary_get_cstring.3 61MLINKS+= prop_dictionary_util.3 prop_dictionary_set_cstring.3 62MLINKS+= prop_dictionary_util.3 prop_dictionary_get_cstring_nocopy.3 63MLINKS+= prop_dictionary_util.3 prop_dictionary_set_cstring_nocopy.3 64 65MLINKS+= prop_array.3 prop_array_add.3 66MLINKS+= prop_array.3 prop_array_capacity.3 67MLINKS+= prop_array.3 prop_array_copy.3 68MLINKS+= prop_array.3 prop_array_copy_mutable.3 69MLINKS+= prop_array.3 prop_array_count.3 70MLINKS+= prop_array.3 prop_array_create.3 71MLINKS+= prop_array.3 prop_array_create_with_capacity.3 72MLINKS+= prop_array.3 prop_array_ensure_capacity.3 73MLINKS+= prop_array.3 prop_array_equals.3 74MLINKS+= prop_array.3 prop_array_externalize.3 75MLINKS+= prop_array.3 prop_array_externalize_to_file.3 76MLINKS+= prop_array.3 prop_array_externalize_to_pref.3 77MLINKS+= prop_array.3 prop_array_get.3 78MLINKS+= prop_array.3 prop_array_internalize.3 79MLINKS+= prop_array.3 prop_array_internalize_from_file.3 80MLINKS+= prop_array.3 prop_array_internalize_from_pref.3 81MLINKS+= prop_array.3 prop_array_iterator.3 82MLINKS+= prop_array.3 prop_array_make_immutable.3 83MLINKS+= prop_array.3 prop_array_mutable.3 84MLINKS+= prop_array.3 prop_array_remove.3 85MLINKS+= prop_array.3 prop_array_set.3 86 87MAN+= prop_array_util.3 88MLINKS+= prop_array_util.3 prop_array_get_bool.3 89MLINKS+= prop_array_util.3 prop_array_set_bool.3 90MLINKS+= prop_array_util.3 prop_array_get_int8.3 91MLINKS+= prop_array_util.3 prop_array_get_uint8.3 92MLINKS+= prop_array_util.3 prop_array_set_int8.3 93MLINKS+= prop_array_util.3 prop_array_set_uint8.3 94MLINKS+= prop_array_util.3 prop_array_get_int16.3 95MLINKS+= prop_array_util.3 prop_array_get_uint16.3 96MLINKS+= prop_array_util.3 prop_array_set_int16.3 97MLINKS+= prop_array_util.3 prop_array_set_uint16.3 98MLINKS+= prop_array_util.3 prop_array_get_int32.3 99MLINKS+= prop_array_util.3 prop_array_get_uint32.3 100MLINKS+= prop_array_util.3 prop_array_set_int32.3 101MLINKS+= prop_array_util.3 prop_array_set_uint32.3 102MLINKS+= prop_array_util.3 prop_array_get_int64.3 103MLINKS+= prop_array_util.3 prop_array_get_uint64.3 104MLINKS+= prop_array_util.3 prop_array_set_int64.3 105MLINKS+= prop_array_util.3 prop_array_set_uint64.3 106MLINKS+= prop_array_util.3 prop_array_get_cstring.3 107MLINKS+= prop_array_util.3 prop_array_set_cstring.3 108MLINKS+= prop_array_util.3 prop_array_get_cstring_nocopy.3 109MLINKS+= prop_array_util.3 prop_array_set_cstring_nocopy.3 110 111MLINKS+= prop_bool.3 prop_bool_copy.3 112MLINKS+= prop_bool.3 prop_bool_create.3 113MLINKS+= prop_bool.3 prop_bool_true.3 114 115MLINKS+= prop_data.3 prop_data_copy.3 116MLINKS+= prop_data.3 prop_data_create_data.3 117MLINKS+= prop_data.3 prop_data_create_data_nocopy.3 118MLINKS+= prop_data.3 prop_data_data.3 119MLINKS+= prop_data.3 prop_data_data_nocopy.3 120MLINKS+= prop_data.3 prop_data_equals.3 121MLINKS+= prop_data.3 prop_data_equals_data.3 122MLINKS+= prop_data.3 prop_data_size.3 123 124MLINKS+= prop_dictionary.3 prop_dictionary_all_keys.3 125MLINKS+= prop_dictionary.3 prop_dictionary_capacity.3 126MLINKS+= prop_dictionary.3 prop_dictionary_copy.3 127MLINKS+= prop_dictionary.3 prop_dictionary_copy_mutable.3 128MLINKS+= prop_dictionary.3 prop_dictionary_count.3 129MLINKS+= prop_dictionary.3 prop_dictionary_create.3 130MLINKS+= prop_dictionary.3 prop_dictionary_create_with_capacity.3 131MLINKS+= prop_dictionary.3 prop_dictionary_ensure_capacity.3 132MLINKS+= prop_dictionary.3 prop_dictionary_equals.3 133MLINKS+= prop_dictionary.3 prop_dictionary_externalize.3 134MLINKS+= prop_dictionary.3 prop_dictionary_externalize_to_file.3 135MLINKS+= prop_dictionary.3 prop_dictionary_externalize_to_pref.3 136MLINKS+= prop_dictionary.3 prop_dictionary_get.3 137MLINKS+= prop_dictionary.3 prop_dictionary_get_keysym.3 138MLINKS+= prop_dictionary.3 prop_dictionary_internalize.3 139MLINKS+= prop_dictionary.3 prop_dictionary_internalize_from_file.3 140MLINKS+= prop_dictionary.3 prop_dictionary_internalize_from_pref.3 141MLINKS+= prop_dictionary.3 prop_dictionary_iterator.3 142MLINKS+= prop_dictionary.3 prop_dictionary_keysym_cstring_nocopy.3 143MLINKS+= prop_dictionary.3 prop_dictionary_keysym_equals.3 144MLINKS+= prop_dictionary.3 prop_dictionary_make_immutable.3 145MLINKS+= prop_dictionary.3 prop_dictionary_mutable.3 146MLINKS+= prop_dictionary.3 prop_dictionary_remove.3 147MLINKS+= prop_dictionary.3 prop_dictionary_remove_keysym.3 148MLINKS+= prop_dictionary.3 prop_dictionary_set.3 149MLINKS+= prop_dictionary.3 prop_dictionary_set_keysym.3 150 151MLINKS+= prop_ingest.3 prop_ingest_context_alloc.3 152MLINKS+= prop_ingest.3 prop_ingest_context_error.3 153MLINKS+= prop_ingest.3 prop_ingest_context_free.3 154MLINKS+= prop_ingest.3 prop_ingest_context_key.3 155MLINKS+= prop_ingest.3 prop_ingest_context_private.3 156MLINKS+= prop_ingest.3 prop_ingest_context_type.3 157MLINKS+= prop_ingest.3 prop_dictionary_ingest.3 158 159MLINKS+= prop_number.3 prop_number_copy.3 160MLINKS+= prop_number.3 prop_number_create_integer.3 161MLINKS+= prop_number.3 prop_number_create_unsigned_integer.3 162MLINKS+= prop_number.3 prop_number_equals.3 163MLINKS+= prop_number.3 prop_number_equals_integer.3 164MLINKS+= prop_number.3 prop_number_equals_unsigned_integer.3 165MLINKS+= prop_number.3 prop_number_size.3 166MLINKS+= prop_number.3 prop_number_unsigned.3 167MLINKS+= prop_number.3 prop_number_integer_value.3 168MLINKS+= prop_number.3 prop_number_unsigned_integer_value.3 169 170MLINKS+= prop_object.3 prop_object_equals.3 171MLINKS+= prop_object.3 prop_object_iterator_next.3 172MLINKS+= prop_object.3 prop_object_iterator_release.3 173MLINKS+= prop_object.3 prop_object_iterator_reset.3 174MLINKS+= prop_object.3 prop_object_release.3 175MLINKS+= prop_object.3 prop_object_retain.3 176MLINKS+= prop_object.3 prop_object_type.3 177 178MLINKS+= prop_string.3 prop_string_append.3 179MLINKS+= prop_string.3 prop_string_append_cstring.3 180MLINKS+= prop_string.3 prop_string_copy.3 181MLINKS+= prop_string.3 prop_string_copy_mutable.3 182MLINKS+= prop_string.3 prop_string_create.3 183MLINKS+= prop_string.3 prop_string_create_cstring.3 184MLINKS+= prop_string.3 prop_string_create_cstring_nocopy.3 185MLINKS+= prop_string.3 prop_string_cstring.3 186MLINKS+= prop_string.3 prop_string_cstring_nocopy.3 187MLINKS+= prop_string.3 prop_string_equals.3 188MLINKS+= prop_string.3 prop_string_equals_cstring.3 189MLINKS+= prop_string.3 prop_string_mutable.3 190MLINKS+= prop_string.3 prop_string_size.3 191 192.include <bsd.lib.mk> 193