9
0
Fork 0

Fixes to apps/*/Make.defs files needed for auto-configuration build

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5027 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2012-08-14 15:45:53 +00:00
parent 1d0aef85bd
commit 1dbf5d6093
10 changed files with 30 additions and 24 deletions

View File

@ -276,3 +276,5 @@
help on one command.
* system/readline.c: If character input/output is interrupted by a
signal, then readline() will try the read/write again.
* apps/*/Make.defs: Numerous fixes needed to use the automated
configuration (from Richard Cochran).

View File

@ -1,5 +1,5 @@
############################################################################
# apps/graaphics/Make.defs
# apps/graphics/Make.defs
# Adds selected applications to apps/ build
#
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
@ -34,7 +34,7 @@
#
############################################################################
if ($(CONFIG_TIFF),y)
ifeq ($(CONFIG_TIFF),y)
CONFIGURED_APPS += graphics/tiff
endif

View File

@ -34,10 +34,10 @@
#
############################################################################
if ($(CONFIG_PCODE),y)
ifeq ($(CONFIG_PCODE),y)
CONFIGURED_APPS += interpreters/pcode
endif
if ($(CONFIG_FICL),y)
ifeq ($(CONFIG_FICL),y)
CONFIGURED_APPS += interpreters/ficl
endif

View File

@ -34,7 +34,7 @@
#
############################################################################
if ($(CONFIG_MODBUS),y)
ifeq ($(CONFIG_MODBUS),y)
CONFIGURED_APPS += modbus
endif

View File

@ -34,7 +34,7 @@
#
############################################################################
if ($(CONFIG_NAMEDAPP),y)
ifeq ($(CONFIG_NAMEDAPP),y)
CONFIGURED_APPS += namedapp
endif

View File

@ -34,50 +34,50 @@
#
############################################################################
if ($(CONFIG_NETUTILS_DHCPC),y)
ifeq ($(CONFIG_NETUTILS_DHCPC),y)
CONFIGURED_APPS += netutils/dhcpc
endif
if ($(CONFIG_NETUTILS_DHCPD),y)
ifeq ($(CONFIG_NETUTILS_DHCPD),y)
CONFIGURED_APPS += netutils/dhcpd
endif
if ($(CONFIG_NETUTILS_FTPC),y)
ifeq ($(CONFIG_NETUTILS_FTPC),y)
CONFIGURED_APPS += netutils/ftpc
endif
if ($(CONFIG_NETUTILS_FTPD),y)
ifeq ($(CONFIG_NETUTILS_FTPD),y)
CONFIGURED_APPS += netutils/ftpd
endif
if ($(CONFIG_NETUTILS_RESOLV),y)
ifeq ($(CONFIG_NETUTILS_RESOLV),y)
CONFIGURED_APPS += netutils/resolv
endif
if ($(CONFIG_NETUTILS_SMTP),y)
ifeq ($(CONFIG_NETUTILS_SMTP),y)
CONFIGURED_APPS += netutils/smtp
endif
if ($(CONFIG_NETUTILS_TELNETD),y)
ifeq ($(CONFIG_NETUTILS_TELNETD),y)
CONFIGURED_APPS += netutils/telnetd
endif
if ($(CONFIG_NETUTILS_TFTPC),y)
ifeq ($(CONFIG_NETUTILS_TFTPC),y)
CONFIGURED_APPS += netutils/tftpc
endif
if ($(CONFIG_NETUTILS_THTTPD),y)
ifeq ($(CONFIG_NETUTILS_THTTPD),y)
CONFIGURED_APPS += netutils/thttpd
endif
if ($(CONFIG_NETUTILS_UIPLIB),y)
ifeq ($(CONFIG_NETUTILS_UIPLIB),y)
CONFIGURED_APPS += netutils/uiplib
endif
if ($(CONFIG_NETUTILS_WEBCLIENT),y)
ifeq ($(CONFIG_NETUTILS_WEBCLIENT),y)
CONFIGURED_APPS += netutils/webclient
endif
if ($(CONFIGNETUTILS_WEBSERVER),y)
ifeq ($(CONFIGNETUTILS_WEBSERVER),y)
CONFIGURED_APPS += netutils/webserver
endif

View File

@ -34,7 +34,7 @@
#
############################################################################
if ($(CONFIG_NSH_LIBRARY),y)
ifeq ($(CONFIG_NSH_LIBRARY),y)
CONFIGURED_APPS += nshlib
endif

View File

@ -34,18 +34,18 @@
#
############################################################################
if ($(CONFIG_VSN_POWEROFF),y)
ifeq ($(CONFIG_VSN_POWEROFF),y)
CONFIGURED_APPS += vsn/poweroff
endif
if ($(CONFIG_VSN_RAMTRON),y)
ifeq ($(CONFIG_VSN_RAMTRON),y)
CONFIGURED_APPS += vsn/ramtron
endif
if ($(CONFIG_VSN_SDCARD),y)
ifeq ($(CONFIG_VSN_SDCARD),y)
CONFIGURED_APPS += vsn/sdcard
endif
if ($(CONFIG_VSN_SYSINFO),y)
ifeq ($(CONFIG_VSN_SYSINFO),y)
CONFIGURED_APPS += vsn/sysinfo
endif

View File

@ -34,7 +34,7 @@
#
############################################################################
if ($(CONFIG_NAMEDAPP),y)
ifeq ($(CONFIG_NAMEDAPP),y)
CONFIGURED_APPS += namedapp
endif

View File

@ -3164,3 +3164,7 @@
Mike Smith).
* configs/.../Make.defs. Fix C++ include path set-up in Make.defs file
for all 8-bit AVR platforms (Thanks Richard Cochran).
* lib/stdio/lib_*stream.c: Revised to handle new error return values from
serial.c.
* arch/arm/src/stm32/stm32_spi.c: SPI driver can now survice re-
initialization (Mike Smith).