2013-01-17 01:05:00 +08:00
|
|
|
############################################################################
|
2021-03-09 05:29:12 +08:00
|
|
|
# libs/libc/builtin/Make.defs
|
2013-01-17 01:05:00 +08:00
|
|
|
#
|
2021-03-02 22:54:21 +08:00
|
|
|
# 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
|
2013-01-17 01:05:00 +08:00
|
|
|
#
|
2021-03-02 22:54:21 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-17 01:05:00 +08:00
|
|
|
#
|
2021-03-02 22:54:21 +08:00
|
|
|
# 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.
|
2013-01-17 01:05:00 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2013-01-17 03:08:23 +08:00
|
|
|
ifeq ($(CONFIG_BUILTIN),y)
|
2013-01-17 01:05:00 +08:00
|
|
|
|
2019-08-23 23:07:40 +08:00
|
|
|
# Builtin library files
|
2013-01-17 01:05:00 +08:00
|
|
|
|
2019-08-23 23:07:40 +08:00
|
|
|
CSRCS += lib_builtin_getname.c lib_builtin_isavail.c lib_builtin_forindex.c
|
2019-08-26 07:37:13 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
2019-08-26 06:58:43 +08:00
|
|
|
CSRCS += lib_builtin_setlist.c
|
2019-08-26 07:37:13 +08:00
|
|
|
endif
|
2013-01-17 03:08:23 +08:00
|
|
|
|
2019-08-23 23:07:40 +08:00
|
|
|
# Hook the builtin subdirectory into the build
|
2013-01-17 03:08:23 +08:00
|
|
|
|
2019-08-23 23:07:40 +08:00
|
|
|
DEPPATH += --dep-path builtin
|
|
|
|
VPATH += builtin
|
2013-01-17 01:05:00 +08:00
|
|
|
|
2013-01-17 03:08:23 +08:00
|
|
|
endif
|