Fixes to apps/*/Make.defs files needed for auto-configuration build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5027 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
19580c73bf
commit
feec38f264
@ -276,3 +276,5 @@
|
|||||||
help on one command.
|
help on one command.
|
||||||
* system/readline.c: If character input/output is interrupted by a
|
* system/readline.c: If character input/output is interrupted by a
|
||||||
signal, then readline() will try the read/write again.
|
signal, then readline() will try the read/write again.
|
||||||
|
* apps/*/Make.defs: Numerous fixes needed to use the automated
|
||||||
|
configuration (from Richard Cochran).
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
# apps/graaphics/Make.defs
|
# apps/graphics/Make.defs
|
||||||
# Adds selected applications to apps/ build
|
# Adds selected applications to apps/ build
|
||||||
#
|
#
|
||||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||||
@ -34,7 +34,7 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_TIFF),y)
|
ifeq ($(CONFIG_TIFF),y)
|
||||||
CONFIGURED_APPS += graphics/tiff
|
CONFIGURED_APPS += graphics/tiff
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -34,10 +34,10 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_PCODE),y)
|
ifeq ($(CONFIG_PCODE),y)
|
||||||
CONFIGURED_APPS += interpreters/pcode
|
CONFIGURED_APPS += interpreters/pcode
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_FICL),y)
|
ifeq ($(CONFIG_FICL),y)
|
||||||
CONFIGURED_APPS += interpreters/ficl
|
CONFIGURED_APPS += interpreters/ficl
|
||||||
endif
|
endif
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_MODBUS),y)
|
ifeq ($(CONFIG_MODBUS),y)
|
||||||
CONFIGURED_APPS += modbus
|
CONFIGURED_APPS += modbus
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_NAMEDAPP),y)
|
ifeq ($(CONFIG_NAMEDAPP),y)
|
||||||
CONFIGURED_APPS += namedapp
|
CONFIGURED_APPS += namedapp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -34,50 +34,50 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_DHCPC),y)
|
ifeq ($(CONFIG_NETUTILS_DHCPC),y)
|
||||||
CONFIGURED_APPS += netutils/dhcpc
|
CONFIGURED_APPS += netutils/dhcpc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_DHCPD),y)
|
ifeq ($(CONFIG_NETUTILS_DHCPD),y)
|
||||||
CONFIGURED_APPS += netutils/dhcpd
|
CONFIGURED_APPS += netutils/dhcpd
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_FTPC),y)
|
ifeq ($(CONFIG_NETUTILS_FTPC),y)
|
||||||
CONFIGURED_APPS += netutils/ftpc
|
CONFIGURED_APPS += netutils/ftpc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_FTPD),y)
|
ifeq ($(CONFIG_NETUTILS_FTPD),y)
|
||||||
CONFIGURED_APPS += netutils/ftpd
|
CONFIGURED_APPS += netutils/ftpd
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_RESOLV),y)
|
ifeq ($(CONFIG_NETUTILS_RESOLV),y)
|
||||||
CONFIGURED_APPS += netutils/resolv
|
CONFIGURED_APPS += netutils/resolv
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_SMTP),y)
|
ifeq ($(CONFIG_NETUTILS_SMTP),y)
|
||||||
CONFIGURED_APPS += netutils/smtp
|
CONFIGURED_APPS += netutils/smtp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_TELNETD),y)
|
ifeq ($(CONFIG_NETUTILS_TELNETD),y)
|
||||||
CONFIGURED_APPS += netutils/telnetd
|
CONFIGURED_APPS += netutils/telnetd
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_TFTPC),y)
|
ifeq ($(CONFIG_NETUTILS_TFTPC),y)
|
||||||
CONFIGURED_APPS += netutils/tftpc
|
CONFIGURED_APPS += netutils/tftpc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_THTTPD),y)
|
ifeq ($(CONFIG_NETUTILS_THTTPD),y)
|
||||||
CONFIGURED_APPS += netutils/thttpd
|
CONFIGURED_APPS += netutils/thttpd
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_UIPLIB),y)
|
ifeq ($(CONFIG_NETUTILS_UIPLIB),y)
|
||||||
CONFIGURED_APPS += netutils/uiplib
|
CONFIGURED_APPS += netutils/uiplib
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_NETUTILS_WEBCLIENT),y)
|
ifeq ($(CONFIG_NETUTILS_WEBCLIENT),y)
|
||||||
CONFIGURED_APPS += netutils/webclient
|
CONFIGURED_APPS += netutils/webclient
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIGNETUTILS_WEBSERVER),y)
|
ifeq ($(CONFIGNETUTILS_WEBSERVER),y)
|
||||||
CONFIGURED_APPS += netutils/webserver
|
CONFIGURED_APPS += netutils/webserver
|
||||||
endif
|
endif
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_NSH_LIBRARY),y)
|
ifeq ($(CONFIG_NSH_LIBRARY),y)
|
||||||
CONFIGURED_APPS += nshlib
|
CONFIGURED_APPS += nshlib
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -34,18 +34,18 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_VSN_POWEROFF),y)
|
ifeq ($(CONFIG_VSN_POWEROFF),y)
|
||||||
CONFIGURED_APPS += vsn/poweroff
|
CONFIGURED_APPS += vsn/poweroff
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_VSN_RAMTRON),y)
|
ifeq ($(CONFIG_VSN_RAMTRON),y)
|
||||||
CONFIGURED_APPS += vsn/ramtron
|
CONFIGURED_APPS += vsn/ramtron
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_VSN_SDCARD),y)
|
ifeq ($(CONFIG_VSN_SDCARD),y)
|
||||||
CONFIGURED_APPS += vsn/sdcard
|
CONFIGURED_APPS += vsn/sdcard
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if ($(CONFIG_VSN_SYSINFO),y)
|
ifeq ($(CONFIG_VSN_SYSINFO),y)
|
||||||
CONFIGURED_APPS += vsn/sysinfo
|
CONFIGURED_APPS += vsn/sysinfo
|
||||||
endif
|
endif
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
if ($(CONFIG_NAMEDAPP),y)
|
ifeq ($(CONFIG_NAMEDAPP),y)
|
||||||
CONFIGURED_APPS += namedapp
|
CONFIGURED_APPS += namedapp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user