2011-03-18 20:46:25 +01:00
|
|
|
############################################################################
|
|
|
|
# apps/nshlib/Makefile
|
|
|
|
#
|
2013-01-29 23:11:04 +01:00
|
|
|
# Copyright (C) 2011-2013 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.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
-include $(TOPDIR)/.config
|
2011-03-18 20:46:25 +01:00
|
|
|
-include $(TOPDIR)/Make.defs
|
2011-03-19 22:04:13 +01:00
|
|
|
include $(APPDIR)/Make.defs
|
2011-03-18 20:46:25 +01:00
|
|
|
|
|
|
|
# NSH Library
|
|
|
|
|
2013-01-29 23:11:04 +01:00
|
|
|
ASRCS =
|
2014-01-10 22:23:26 +01:00
|
|
|
CSRCS = nsh_init.c nsh_parse.c nsh_console.c nsh_script.c
|
|
|
|
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
|
|
|
|
else
|
|
|
|
CSRCS += nsh_session.c
|
|
|
|
endif
|
2011-03-18 20:46:25 +01:00
|
|
|
|
2015-11-27 20:04:11 +01:00
|
|
|
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
|
|
|
|
CSRCS += nsh_fsutils.c
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
|
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)
|
2012-10-31 15:36:00 +01:00
|
|
|
CSRCS += nsh_netinit.c nsh_netcmds.c
|
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)
|
2012-10-31 15:36:00 +01:00
|
|
|
CSRCS += nsh_consolemain.c
|
2011-03-18 20:46:25 +01:00
|
|
|
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
|
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
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_USBHOST),y)
|
|
|
|
CSRCS += nsh_usbkeyboard.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
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-20 16:37:25 +01:00
|
|
|
ifeq ($(CONFIG_FSUTILS_PASSWD),y)
|
|
|
|
CSRCS += nsh_passwdcmds.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2012-10-31 15:36:00 +01:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2011-03-18 20:46:25 +01:00
|
|
|
|
2012-10-31 15:36:00 +01:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2011-03-18 20:46:25 +01:00
|
|
|
|
2012-11-12 16:22:27 +01:00
|
|
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
|
|
|
BIN = ..\libapps$(LIBEXT)
|
|
|
|
else
|
2011-04-10 18:08:08 +02:00
|
|
|
ifeq ($(WINTOOL),y)
|
2012-11-12 16:22:27 +01:00
|
|
|
BIN = ..\\libapps$(LIBEXT)
|
2011-04-10 18:08:08 +02:00
|
|
|
else
|
2012-11-12 16:22:27 +01:00
|
|
|
BIN = ../libapps$(LIBEXT)
|
|
|
|
endif
|
2011-04-10 18:08:08 +02:00
|
|
|
endif
|
2011-03-18 20:46:25 +01:00
|
|
|
|
2012-10-31 15:36:00 +01:00
|
|
|
ROOTDEPPATH = --dep-path .
|
2013-09-30 19:34:04 +02:00
|
|
|
VPATH =
|
2011-03-18 20:46:25 +01:00
|
|
|
|
2011-03-24 01:28:50 +01:00
|
|
|
# Build targets
|
|
|
|
|
2012-10-31 15:36:00 +01:00
|
|
|
all: .built
|
2011-03-24 01:28:50 +01:00
|
|
|
.PHONY: context .depend depend clean distclean
|
2011-03-18 20:46:25 +01:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
|
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
|
|
|
$(call COMPILE, $<, $@)
|
|
|
|
|
2011-04-01 17:18:02 +02:00
|
|
|
.built: $(OBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $(BIN), $(OBJS))
|
2011-03-18 20:46:25 +01:00
|
|
|
@touch .built
|
|
|
|
|
2014-09-06 16:00:47 +02:00
|
|
|
install:
|
|
|
|
|
2011-03-24 01:28:50 +01:00
|
|
|
context:
|
|
|
|
|
2011-03-18 20:46:25 +01:00
|
|
|
.depend: Makefile $(SRCS)
|
2012-11-12 00:44:31 +01:00
|
|
|
@$(MKDEP) $(ROOTDEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
2011-03-18 20:46:25 +01:00
|
|
|
@touch $@
|
|
|
|
|
|
|
|
depend: .depend
|
|
|
|
|
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, .built)
|
2011-03-18 20:46:25 +01:00
|
|
|
$(call CLEAN)
|
|
|
|
|
|
|
|
distclean: clean
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.dep)
|
|
|
|
$(call DELFILE, .depend)
|
2011-03-18 20:46:25 +01:00
|
|
|
|
|
|
|
-include Make.dep
|
2011-03-20 23:07:56 +01:00
|
|
|
|