2012-04-14 20:01:08 +00:00
|
|
|
############################################################################
|
|
|
|
# apps/system/Make.defs
|
|
|
|
# Adds selected applications to apps/ build
|
|
|
|
#
|
2014-01-20 13:17:21 -06:00
|
|
|
# Copyright (C) 2012-2014 Gregory Nutt. All rights reserved.
|
2012-04-14 20:01:08 +00:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2013-09-25 17:23:03 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_CDCACM),y)
|
|
|
|
CONFIGURED_APPS += system/cdcacm
|
|
|
|
endif
|
|
|
|
|
2013-09-25 18:50:14 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_COMPOSITE),y)
|
|
|
|
CONFIGURED_APPS += system/composite
|
|
|
|
endif
|
|
|
|
|
2012-09-04 16:04:31 +00:00
|
|
|
ifeq ($(CONFIG_SYSTEM_FREE),y)
|
|
|
|
CONFIGURED_APPS += system/free
|
2012-04-14 20:01:08 +00:00
|
|
|
endif
|
|
|
|
|
2014-06-15 12:07:27 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_HEX2BIN),y)
|
|
|
|
CONFIGURED_APPS += system/hex2bin
|
|
|
|
endif
|
|
|
|
|
2012-09-04 16:04:31 +00:00
|
|
|
ifeq ($(CONFIG_SYSTEM_I2CTOOL),y)
|
|
|
|
CONFIGURED_APPS += system/i2c
|
2012-04-14 20:01:08 +00:00
|
|
|
endif
|
|
|
|
|
2014-01-15 17:52:06 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_INIFILE),y)
|
|
|
|
CONFIGURED_APPS += system/inifile
|
|
|
|
endif
|
|
|
|
|
2012-09-04 16:04:31 +00:00
|
|
|
ifeq ($(CONFIG_SYSTEM_INSTALL),y)
|
|
|
|
CONFIGURED_APPS += system/install
|
2012-04-14 20:01:08 +00:00
|
|
|
endif
|
|
|
|
|
2013-05-01 07:45:34 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_FLASH_ERASEALL),y)
|
|
|
|
CONFIGURED_APPS += system/flash_eraseall
|
2013-03-27 00:03:25 +00:00
|
|
|
endif
|
|
|
|
|
2013-10-27 07:23:01 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_NXPLAYER),y)
|
|
|
|
CONFIGURED_APPS += system/nxplayer
|
|
|
|
endif
|
|
|
|
|
2014-05-09 11:09:43 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_PRUN),y)
|
2014-05-09 12:30:07 -06:00
|
|
|
CONFIGURED_APPS += system/prun
|
2014-05-09 11:09:43 -06:00
|
|
|
endif
|
|
|
|
|
2014-06-27 09:30:41 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_MDIO),y)
|
|
|
|
CONFIGURED_APPS += system/mdio
|
|
|
|
endif
|
|
|
|
|
2013-06-26 10:54:12 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_RAMTEST),y)
|
|
|
|
CONFIGURED_APPS += system/ramtest
|
|
|
|
endif
|
|
|
|
|
2012-09-04 16:04:31 +00:00
|
|
|
ifeq ($(CONFIG_SYSTEM_READLINE),y)
|
|
|
|
CONFIGURED_APPS += system/readline
|
2012-04-14 20:01:08 +00:00
|
|
|
endif
|
2012-10-03 23:36:54 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_SYSTEM_POWEROFF),y)
|
|
|
|
CONFIGURED_APPS += system/poweroff
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SYSTEM_RAMTRON),y)
|
|
|
|
CONFIGURED_APPS += system/ramtron
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SYSTEM_SDCARD),y)
|
|
|
|
CONFIGURED_APPS += system/sdcard
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SYSTEM_SYSINFO),y)
|
|
|
|
CONFIGURED_APPS += system/sysinfo
|
|
|
|
endif
|
|
|
|
|
2013-01-28 18:45:09 +00:00
|
|
|
ifeq ($(CONFIG_SYSTEM_USBMONITOR),y)
|
|
|
|
CONFIGURED_APPS += system/usbmonitor
|
|
|
|
endif
|
2013-07-12 16:01:37 -06:00
|
|
|
|
2013-09-24 11:46:49 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_STACKMONITOR),y)
|
|
|
|
CONFIGURED_APPS += system/stackmonitor
|
|
|
|
endif
|
|
|
|
|
2013-09-25 16:54:39 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_USBMSC),y)
|
|
|
|
CONFIGURED_APPS += system/usbmsc
|
|
|
|
endif
|
|
|
|
|
2014-02-02 10:25:53 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_CLE),y)
|
|
|
|
CONFIGURED_APPS += system/cle
|
|
|
|
endif
|
|
|
|
|
2014-01-20 13:17:21 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_VI),y)
|
|
|
|
CONFIGURED_APPS += system/vi
|
|
|
|
endif
|
|
|
|
|
2013-07-12 16:01:37 -06:00
|
|
|
ifeq ($(CONFIG_SYSTEM_ZMODEM),y)
|
|
|
|
CONFIGURED_APPS += system/zmodem
|
|
|
|
endif
|