2011-03-18 20:46:25 +01:00
|
|
|
############################################################################
|
|
|
|
# apps/nshlib/Makefile
|
|
|
|
#
|
2016-01-20 21:42:39 +01:00
|
|
|
# Copyright (C) 2011-2013, 2016 Gregory Nutt. All rights reserved.
|
2012-02-02 17:04:09 +01:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-03-18 20:46:25 +01:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2019-10-15 03:25:48 +02:00
|
|
|
-include $(TOPDIR)/Make.defs
|
2011-03-18 20:46:25 +01:00
|
|
|
|
|
|
|
# NSH Library
|
|
|
|
|
2016-08-25 19:31:08 +02:00
|
|
|
CSRCS = nsh_init.c nsh_parse.c nsh_console.c nsh_script.c nsh_system.c
|
2014-01-10 22:23:26 +01:00
|
|
|
CSRCS += nsh_command.c nsh_fscmds.c nsh_ddcmd.c nsh_proccmds.c nsh_mmcmds.c
|
2015-07-04 16:20:19 +02:00
|
|
|
CSRCS += nsh_timcmds.c nsh_envcmds.c nsh_syscmds.c nsh_dbgcmds.c
|
2013-09-30 19:34:04 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_NFILE_STREAMS),0)
|
|
|
|
CSRCS += nsh_stdsession.c
|
2016-01-20 22:22:02 +01:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE_LOGIN),y)
|
|
|
|
CSRCS += nsh_stdlogin.c
|
|
|
|
endif
|
2013-09-30 19:34:04 +02:00
|
|
|
else
|
|
|
|
CSRCS += nsh_session.c
|
2016-01-20 21:42:39 +01:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE_LOGIN),y)
|
|
|
|
CSRCS += nsh_login.c
|
|
|
|
endif
|
2016-01-20 22:22:02 +01:00
|
|
|
endif
|
2016-01-20 21:42:39 +01:00
|
|
|
|
2015-11-27 20:04:11 +01:00
|
|
|
CSRCS += nsh_fsutils.c
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
2013-01-15 22:01:37 +01:00
|
|
|
CSRCS += nsh_builtin.c
|
2011-03-18 20:46:25 +01:00
|
|
|
endif
|
|
|
|
|
2013-01-17 19:32:13 +01:00
|
|
|
ifeq ($(CONFIG_NSH_FILE_APPS),y)
|
|
|
|
CSRCS += nsh_fileapps.c
|
|
|
|
endif
|
|
|
|
|
2018-10-01 21:30:25 +02:00
|
|
|
ifeq ($(CONFIG_NSH_VARS),y)
|
|
|
|
CSRCS += nsh_vars.c
|
|
|
|
endif
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
ifeq ($(CONFIG_NSH_ROMFSETC),y)
|
2012-10-31 15:36:00 +01:00
|
|
|
CSRCS += nsh_romfsetc.c
|
2011-03-18 20:46:25 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET),y)
|
2019-04-29 18:22:56 +02:00
|
|
|
CSRCS += nsh_netcmds.c
|
2017-05-21 20:00:55 +02:00
|
|
|
|
2013-10-05 23:42:20 +02:00
|
|
|
ifeq ($(CONFIG_NET_ROUTE),y)
|
|
|
|
CSRCS += nsh_routecmds.c
|
|
|
|
endif
|
2011-03-18 20:46:25 +01:00
|
|
|
endif
|
|
|
|
|
2012-08-04 01:47:32 +02:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
2012-10-31 15:36:00 +01:00
|
|
|
CSRCS += nsh_mntcmds.c
|
2012-08-04 01:47:32 +02:00
|
|
|
endif
|
|
|
|
|
2015-12-13 16:55:52 +01:00
|
|
|
ifeq ($(CONFIG_MODULE),y)
|
|
|
|
ifneq ($(CONFIG_NSH_DISABLE_MODCMDS),y)
|
|
|
|
CSRCS += nsh_modcmds.c
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE),y)
|
2016-08-25 22:19:36 +02:00
|
|
|
CSRCS += nsh_consolemain.c
|
2011-03-18 20:46:25 +01:00
|
|
|
endif
|
|
|
|
|
2016-10-01 15:44:15 +02:00
|
|
|
ifneq ($(CONFIG_NSH_DISABLE_PRINTF),y)
|
|
|
|
CSRCS += nsh_printf.c
|
|
|
|
endif
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
ifeq ($(CONFIG_NSH_TELNET),y)
|
2012-10-31 15:36:00 +01:00
|
|
|
CSRCS += nsh_telnetd.c
|
2016-01-20 22:22:02 +01:00
|
|
|
ifeq ($(CONFIG_NSH_TELNET_LOGIN),y)
|
|
|
|
CSRCS += nsh_telnetlogin.c
|
|
|
|
endif
|
2011-03-18 20:46:25 +01:00
|
|
|
endif
|
|
|
|
|
2011-03-18 21:35:31 +01:00
|
|
|
ifneq ($(CONFIG_NSH_DISABLESCRIPT),y)
|
2012-10-31 15:36:00 +01:00
|
|
|
CSRCS += nsh_test.c
|
2011-03-18 20:46:25 +01:00
|
|
|
endif
|
|
|
|
|
2012-03-06 21:21:57 +01:00
|
|
|
ifeq ($(CONFIG_USBDEV),y)
|
2014-07-04 00:25:02 +02:00
|
|
|
CSRCS += nsh_usbconsole.c
|
|
|
|
endif
|
|
|
|
|
2018-12-09 01:53:54 +01:00
|
|
|
ifeq ($(CONFIG_NSH_ALTCONDEV),y)
|
|
|
|
CSRCS += nsh_altconsole.c
|
2018-11-30 01:41:42 +01:00
|
|
|
endif
|
|
|
|
|
2014-07-04 00:25:02 +02:00
|
|
|
ifeq ($(CONFIG_NSH_USBDEV_TRACE),y)
|
|
|
|
CSRCS += nsh_usbtrace.c
|
2012-01-24 01:00:31 +01:00
|
|
|
endif
|
2011-09-01 17:09:49 +02:00
|
|
|
|
2012-10-31 15:36:00 +01:00
|
|
|
ifeq ($(CONFIG_NETUTILS_CODECS),y)
|
|
|
|
CSRCS += nsh_codeccmd.c
|
|
|
|
endif
|
|
|
|
|
2016-01-22 17:46:19 +01:00
|
|
|
ifeq ($(CONFIG_NSH_LOGIN_PASSWD),y)
|
2016-01-20 16:37:25 +01:00
|
|
|
CSRCS += nsh_passwdcmds.c
|
|
|
|
endif
|
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
include $(APPDIR)/Application.mk
|