2011-03-18 20:46:25 +01: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 20:46:25 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-18 20:46:25 +01: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 20:46:25 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/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
|
|
|
|
2020-08-13 16:17:42 +02:00
|
|
|
ifeq ($(CONFIG_FILE_STREAM),y)
|
|
|
|
CSRCS += nsh_session.c
|
2016-01-20 22:22:02 +01:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE_LOGIN),y)
|
2020-08-13 16:17:42 +02:00
|
|
|
CSRCS += nsh_login.c
|
2016-01-20 22:22:02 +01:00
|
|
|
endif
|
2013-09-30 19:34:04 +02:00
|
|
|
else
|
2020-08-13 16:17:42 +02:00
|
|
|
CSRCS += nsh_stdsession.c
|
2016-01-20 21:42:39 +01:00
|
|
|
ifeq ($(CONFIG_NSH_CONSOLE_LOGIN),y)
|
2020-08-13 16:17:42 +02:00
|
|
|
CSRCS += nsh_stdlogin.c
|
2016-01-20 21:42:39 +01:00
|
|
|
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
|