nuttx/libs/libc/uuid/Make.defs
Xiang Xiao 6c03a4e4d5 libc: Add uuid implemenation
specified by OpenGroup here:
https://pubs.opengroup.org/onlinepubs/009629399/toc.htm

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Change-Id: I3bc585e7f4d41f6c2ea70e170276ab0d0399b088
2020-07-21 21:48:18 -07:00

29 lines
1.2 KiB
Plaintext

############################################################################
# libs/libc/uuid/Make.defs
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################
CSRCS += lib_uuid_compare.c lib_uuid_create.c lib_uuid_create_nil.c
CSRCS += lib_uuid_equal.c lib_uuid_from_string.c lib_uuid_hash.c
CSRCS += lib_uuid_is_nil.c lib_uuid_stream.c lib_uuid_to_string.c
# Add the uuid directory to the build
DEPPATH += --dep-path uuid
VPATH += :uuid