1 1.1 thorpej # $NetBSD: Makefile.inc,v 1.1 2004/09/13 21:44:54 thorpej Exp $ 2 1.1 thorpej 3 1.1 thorpej # DCE 1.1 compatible UUID implementation sources 4 1.1 thorpej 5 1.1 thorpej .PATH: ${.CURDIR}/uuid 6 1.1 thorpej 7 1.1 thorpej SRCS+= uuid_compare.c uuid_create.c uuid_create_nil.c uuid_equal.c \ 8 1.1 thorpej uuid_from_string.c uuid_hash.c uuid_is_nil.c uuid_stream.c \ 9 1.1 thorpej uuid_to_string.c 10 1.1 thorpej 11 1.1 thorpej MAN+= uuid.3 12 1.1 thorpej 13 1.1 thorpej MLINKS+=uuid.3 uuid_compare.3 14 1.1 thorpej MLINKS+=uuid.3 uuid_create.3 15 1.1 thorpej MLINKS+=uuid.3 uuid_create_nil.3 16 1.1 thorpej MLINKS+=uuid.3 uuid_equal.3 17 1.1 thorpej MLINKS+=uuid.3 uuid_from_string.3 18 1.1 thorpej MLINKS+=uuid.3 uuid_hash.3 19 1.1 thorpej MLINKS+=uuid.3 uuid_is_nil.3 20 1.1 thorpej MLINKS+=uuid.3 uuid_to_string.3 21 1.1 thorpej 22 1.1 thorpej MLINKS+=uuid.3 uuid_enc_le.3 23 1.1 thorpej MLINKS+=uuid.3 uuid_dec_le.3 24 1.1 thorpej MLINKS+=uuid.3 uuid_enc_be.3 25 1.1 thorpej MLINKS+=uuid.3 uuid_dec_be.3 26