nuttx/drivers/syslog/Make.defs
yinshengkai 95d9abcf58 tools: replace DEFINE script to Makefile variable
In the past, predefined macros were generated by define.sh scripts
Now they are generated by concatenating environment variables

In this way, when executing makefile, no shell command will be executed,
it will improve the speed of executing makfile

Signed-off-by: yinshengkai <yinshengkai@xiaomi.com>
2022-11-03 19:59:55 +08:00

86 lines
2.4 KiB
Plaintext

############################################################################
# drivers/syslog/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.
#
############################################################################
############################################################################
# Include SYSLOG Infrastructure
CSRCS += vsyslog.c syslog_stream.c syslog_channel.c
CSRCS += syslog_putc.c syslog_write.c syslog_force.c syslog_flush.c
ifeq ($(CONFIG_SYSLOG_INTBUFFER),y)
CSRCS += syslog_intbuffer.c
endif
ifneq ($(CONFIG_ARCH_SYSLOG),y)
CSRCS += syslog_initialize.c
endif
# The RAMLOG device is usable as a system logging device or standalone
ifeq ($(CONFIG_RAMLOG),y)
CSRCS += ramlog.c
ifneq ($(CONFIG_RAMLOG_BUFFER_SECTION),"")
CFLAGS += ${DEFINE_PREFIX}RAMLOG_BUFFER_SECTION=CONFIG_RAMLOG_BUFFER_SECTION
endif
endif
############################################################################
# Include SYSLOG drivers (only one should be enabled)
# System logging to a character device (or file)
CSRCS += syslog_device.c
ifeq ($(CONFIG_SYSLOG_CHAR),y)
CSRCS += syslog_devchannel.c
endif
ifeq ($(CONFIG_SYSLOG_CONSOLE),y)
CSRCS += syslog_consolechannel.c
endif
ifeq ($(CONFIG_SYSLOG_FILE),y)
CSRCS += syslog_filechannel.c
endif
ifeq ($(CONFIG_SYSLOG_CHARDEV),y)
CSRCS += syslog_chardev.c
endif
ifeq ($(CONFIG_SYSLOG_RPMSG),y)
CSRCS += syslog_rpmsg.c
endif
ifeq ($(CONFIG_SYSLOG_RPMSG_SERVER),y)
CSRCS += syslog_rpmsg_server.c
endif
ifeq ($(CONFIG_CONSOLE_SYSLOG),y)
CSRCS += syslog_console.c
endif
# (Add other SYSLOG drivers here)
# Include SYSLOG build support
DEPPATH += --dep-path syslog
VPATH += :syslog