2011-03-18 19:46:25 +00:00
|
|
|
############################################################################
|
|
|
|
# apps/nshlib/Makefile
|
|
|
|
#
|
2021-06-07 17:31:08 +02: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
|
2011-03-18 19:46:25 +00:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-18 19:46:25 +00:00
|
|
|
#
|
2021-06-07 17:31:08 +02: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.
|
2011-03-18 19:46:25 +00:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 12:35:03 +08:00
|
|
|
include $(APPDIR)/Make.defs
|
2011-03-18 19:46:25 +00:00
|
|
|
|
|
|
|
# NSH Library
|
|
|
|
|
2016-08-25 11:31:08 -06:00
|
|
|
CSRCS = nsh_init.c nsh_parse.c nsh_console.c nsh_script.c nsh_system.c
|
2014-01-10 15:23:26 -06:00
|
|
|
CSRCS += nsh_command.c nsh_fscmds.c nsh_ddcmd.c nsh_proccmds.c nsh_mmcmds.c
|
2015-07-04 08:20:19 -06:00
|
|
|
CSRCS += nsh_timcmds.c nsh_envcmds.c nsh_syscmds.c nsh_dbgcmds.c
|
2013-09-30 11:34:04 -06:00
|
|
|
|
2020-08-13 22:17:42 +08:00
|
|
|
ifeq ($(CONFIG_FILE_STREAM),y)
|
|
|
|
CSRCS += nsh_session.c
|
2016-01-20 15:22:02 -06:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE_LOGIN),y)
|
2020-08-13 22:17:42 +08:00
|
|
|
CSRCS += nsh_login.c
|
2016-01-20 15:22:02 -06:00
|
|
|
endif
|
2013-09-30 11:34:04 -06:00
|
|
|
else
|
2020-08-13 22:17:42 +08:00
|
|
|
CSRCS += nsh_stdsession.c
|
2016-01-20 14:42:39 -06:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE_LOGIN),y)
|
2020-08-13 22:17:42 +08:00
|
|
|
CSRCS += nsh_stdlogin.c
|
2016-01-20 14:42:39 -06:00
|
|
|
endif
|
2016-01-20 15:22:02 -06:00
|
|
|
endif
|
2016-01-20 14:42:39 -06:00
|
|
|
|
2015-11-27 13:04:11 -06:00
|
|
|
CSRCS += nsh_fsutils.c
|
|
|
|
|
2011-03-18 20:35:31 +00:00
|
|
|
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
|
2013-01-15 21:01:37 +00:00
|
|
|
CSRCS += nsh_builtin.c
|
2011-03-18 19:46:25 +00:00
|
|
|
endif
|
|
|
|
|
2013-01-17 18:32:13 +00:00
|
|
|
ifeq ($(CONFIG_NSH_FILE_APPS),y)
|
|
|
|
CSRCS += nsh_fileapps.c
|
|
|
|
endif
|
|
|
|
|
2018-10-01 13:30:25 -06:00
|
|
|
ifeq ($(CONFIG_NSH_VARS),y)
|
|
|
|
CSRCS += nsh_vars.c
|
|
|
|
endif
|
|
|
|
|
2011-03-18 20:35:31 +00:00
|
|
|
ifeq ($(CONFIG_NSH_ROMFSETC),y)
|
2012-10-31 14:36:00 +00:00
|
|
|
CSRCS += nsh_romfsetc.c
|
2011-03-18 19:46:25 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET),y)
|
2019-04-29 10:22:56 -06:00
|
|
|
CSRCS += nsh_netcmds.c
|
2017-05-21 12:00:55 -06:00
|
|
|
|
2013-10-05 15:42:20 -06:00
|
|
|
ifeq ($(CONFIG_NET_ROUTE),y)
|
|
|
|
CSRCS += nsh_routecmds.c
|
|
|
|
endif
|
2011-03-18 19:46:25 +00:00
|
|
|
endif
|
|
|
|
|
2012-08-03 23:47:32 +00:00
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
2012-10-31 14:36:00 +00:00
|
|
|
CSRCS += nsh_mntcmds.c
|
2012-08-03 23:47:32 +00:00
|
|
|
endif
|
|
|
|
|
2015-12-13 09:55:52 -06:00
|
|
|
ifeq ($(CONFIG_MODULE),y)
|
|
|
|
ifneq ($(CONFIG_NSH_DISABLE_MODCMDS),y)
|
|
|
|
CSRCS += nsh_modcmds.c
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-03-18 20:35:31 +00:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE),y)
|
2016-08-25 14:19:36 -06:00
|
|
|
CSRCS += nsh_consolemain.c
|
2011-03-18 19:46:25 +00:00
|
|
|
endif
|
|
|
|
|
2016-10-01 07:44:15 -06:00
|
|
|
ifneq ($(CONFIG_NSH_DISABLE_PRINTF),y)
|
|
|
|
CSRCS += nsh_printf.c
|
|
|
|
endif
|
|
|
|
|
2011-03-18 20:35:31 +00:00
|
|
|
ifeq ($(CONFIG_NSH_TELNET),y)
|
2012-10-31 14:36:00 +00:00
|
|
|
CSRCS += nsh_telnetd.c
|
2016-01-20 15:22:02 -06:00
|
|
|
ifeq ($(CONFIG_NSH_TELNET_LOGIN),y)
|
|
|
|
CSRCS += nsh_telnetlogin.c
|
|
|
|
endif
|
2011-03-18 19:46:25 +00:00
|
|
|
endif
|
|
|
|
|
2011-03-18 20:35:31 +00:00
|
|
|
ifneq ($(CONFIG_NSH_DISABLESCRIPT),y)
|
2012-10-31 14:36:00 +00:00
|
|
|
CSRCS += nsh_test.c
|
2011-03-18 19:46:25 +00:00
|
|
|
endif
|
|
|
|
|
2012-03-06 20:21:57 +00:00
|
|
|
ifeq ($(CONFIG_USBDEV),y)
|
2014-07-03 16:25:02 -06:00
|
|
|
CSRCS += nsh_usbconsole.c
|
|
|
|
endif
|
|
|
|
|
2018-12-08 18:53:54 -06:00
|
|
|
ifeq ($(CONFIG_NSH_ALTCONDEV),y)
|
|
|
|
CSRCS += nsh_altconsole.c
|
2018-11-29 18:41:42 -06:00
|
|
|
endif
|
|
|
|
|
2014-07-03 16:25:02 -06:00
|
|
|
ifeq ($(CONFIG_NSH_USBDEV_TRACE),y)
|
|
|
|
CSRCS += nsh_usbtrace.c
|
2012-01-24 00:00:31 +00:00
|
|
|
endif
|
2011-09-01 15:09:49 +00:00
|
|
|
|
2012-10-31 14:36:00 +00:00
|
|
|
ifeq ($(CONFIG_NETUTILS_CODECS),y)
|
|
|
|
CSRCS += nsh_codeccmd.c
|
|
|
|
endif
|
|
|
|
|
2016-01-22 10:46:19 -06:00
|
|
|
ifeq ($(CONFIG_NSH_LOGIN_PASSWD),y)
|
2016-01-20 09:37:25 -06:00
|
|
|
CSRCS += nsh_passwdcmds.c
|
|
|
|
endif
|
|
|
|
|
2018-09-03 09:29:56 -06:00
|
|
|
include $(APPDIR)/Application.mk
|