9
0
Fork 0

Remove .built_always

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3449 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2011-04-01 14:30:43 +00:00
parent 35f03f56e0
commit 69c6d3405b
107 changed files with 253 additions and 262 deletions

View File

@ -45,60 +45,42 @@ APPDIR = ${shell pwd}
SUBDIRS = namedapp nshlib netutils examples vsn
# We use a non-existing .built_always to guarantee that Makefile always walks
# into the sub-directories and asks for build. NOTE that namedapp is always
# in the list of applications to be built
BUILTIN_APPS_BUILT = namedapp/.built_always
BUILTIN_APPS_DIR = namedapp
# CONFIGURED_APPS is the list of all configured built-in directories/built action
# It is created by the configured appconfig file (a copy of which appears in this
# directoy as .config)
# directory as .config)
CONFIGURED_APPS =
-include .config
# AVAILABLE_APPS is the list of currently available application directories. It
# BUILTIN_APPS_DIR is the list of currently available application directories. It
# is the same as CONFIGURED_APPS, but filtered to exclude any non-existent apps
# namedapp is always in the list of applications to be built
AVAILABLE_APPS =
BUILTIN_APPS_DIR = namedapp
define ADD_AVAILABLE
AVAILABLE_APPS += ${shell DIR=`echo $1 | cut -d'=' -f1`; if [ -r $$DIR/Makefile ]; then echo "$1"; fi}
# Create the list of available applications (BUILTIN_APPS_DIR)
define ADD_BUILTIN
BUILTIN_APPS_DIR += ${shell if [ -r $1/Makefile ]; then echo "$1"; fi}
endef
define BUILTIN_ADD_APP
BUILTIN_APPS_DIR += ${shell echo $1 | cut -d'=' -f1}
endef
define BUILTIN_ADD_BUILT
BUILTIN_APPS_BUILT += ${shell echo $1 | sed -e "s:=:/:g"}
endef
# (1) Create the list of available applications (AVAILABLE_APPS), (2) Add each
# available app to the list of to build (BUILTIN_APPS_DIR), and (3) Add the
# "built" indication for each app (BUILTIN_APPS_BUILT).
$(foreach BUILTIN, $(CONFIGURED_APPS), $(eval $(call ADD_AVAILABLE,$(BUILTIN))))
$(foreach APP, $(AVAILABLE_APPS), $(eval $(call BUILTIN_ADD_APP,$(APP))))
$(foreach BUILT, $(AVAILABLE_APPS), $(eval $(call BUILTIN_ADD_BUILT,$(BUILT))))
$(foreach BUILTIN, $(CONFIGURED_APPS), $(eval $(call ADD_BUILTIN,$(BUILTIN))))
# The final build target
BIN = libapps$(LIBEXT)
BIN = libapps$(LIBEXT)
# Build targets
all: $(BIN)
.PHONY: $(BUILTIN_APPS_BUILT) context depend clean distclean
.PHONY: $(BUILTIN_APPS_DIR) context depend clean distclean
$(BUILTIN_APPS_BUILT):
$(BUILTIN_APPS_DIR):
@for dir in $(BUILTIN_APPS_DIR) ; do \
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" APPDIR=$(APPDIR); \
done
$(BIN): $(BUILTIN_APPS_BUILT)
$(BIN): $(BUILTIN_APPS_DIR)
@( for obj in $(OBJS) ; do \
$(call ARCHIVE, $@, $${obj}); \
done ; )

View File

@ -34,7 +34,7 @@ NuttX is configured. .config is included in the toplevel apps/Makefile.
As a minimum, this configuration file must define files to add to the
CONFIGURED_APPS list like:
CONFIGURED_APPS += hello/.built_always poweroff/.built_always jvm/.built_always
CONFIGURED_APPS += hello poweroff jvm
The form of each entry is <dir>=<dependency> when:

View File

@ -8,7 +8,7 @@ examples
application Makefile (this path is a relative to the apps/ top-
level directory). For example,
CONFIGURE_APPS += examples/ostest=.built_always
CONFIGURE_APPS += examples/ostest
Selects the examples/ostest example.
@ -46,7 +46,7 @@ examples/dhcpd
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS += uiplib
examples/hello
^^^^^^^^^^^^^^
@ -101,7 +101,7 @@ examples/igmp
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS += uiplib
examples/mm
^^^^^^^^^^^
@ -145,7 +145,7 @@ examples/netttest
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS += uiplib
examples/nsh
^^^^^^^^^^^^
@ -159,15 +159,15 @@ examples/nsh
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = nshlib=.built_always
CONFIGURED_APPS += nshlib
And if networking is included:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS = dhcpc=.built_always
CONFIGURED_APPS = resolv=.built_always
CONFIGURED_APPS = tftp=.built_always
CONFIGURED_APPS = webclient=.built_always
CONFIGURED_APPS += uiplib
CONFIGURED_APPS += dhcpc
CONFIGURED_APPS += resolv
CONFIGURED_APPS += tftp
CONFIGURED_APPS += webclient
examples/nx
^^^^^^^^^^^
@ -332,7 +332,7 @@ examples/poll
provide an appconfig file in the configuration driver with instruction
to build applications like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS += uiplib
examples/romfs
^^^^^^^^^^^^^^
@ -384,8 +384,8 @@ examples/sendmail
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS = smtp=.built_always
CONFIGURED_APPS += uiplib
CONFIGURED_APPS += smtp
examples/serloop
^^^^^^^^^^^^^^^^
@ -412,8 +412,8 @@ examples/thttpd
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS = thttpd=.built_always
CONFIGURED_APPS += uiplib
CONFIGURED_APPS += thttpd
examples/udp
^^^^^^^^^^^^
@ -425,7 +425,7 @@ examples/udp
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS += uiplib
examples/uip
^^^^^^^^^^^^
@ -465,10 +465,10 @@ examples/uip
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS = dhcpc=.built_always
CONFIGURED_APPS = resolv=.built_always
CONFIGURED_APPS = webserver=.built_always
CONFIGURED_APPS += uiplib
CONFIGURED_APPS += dhcpc
CONFIGURED_APPS += resolv
CONFIGURED_APPS += webserver
examples/usbserial
^^^^^^^^^^^^^^^^^^
@ -629,8 +629,8 @@ examples/wget
file in the configuration driver with instruction to build applications
like:
CONFIGURED_APPS = uiplib=.built_always
CONFIGURED_APPS = resolv=.built_always
CONFIGURED_APPS = webclient=.built_always
CONFIGURED_APPS += uiplib
CONFIGURED_APPS += resolv
CONFIGURED_APPS += webclient

View File

@ -1,7 +1,7 @@
############################################################################
# examples/nettest/Makefile
#
# Copyright (C) 2007-2008, 2010-2010 Gregory Nutt. All rights reserved.
# Copyright (C) 2007-2008, 2010-2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@ -79,7 +79,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
.PHONY: .built clean depend disclean
.PHONY: clean depend disclean
$(TARG_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)

View File

@ -1,7 +1,7 @@
############################################################################
# apps/examples/udp/Makefile
#
# Copyright (C) 2007-2008, 2010 Gregory Nutt. All rights reserved.
# Copyright (C) 2007-2008, 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
@ -79,7 +79,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
.PHONY: .built clean depend disclean
.PHONY: clean depend disclean
$(TARG_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)
@ -91,7 +91,6 @@ $(TARG_BIN): $(TARG_OBJS) $(HOST_BIN)
@( for obj in $(TARG_OBJS) ; do \
$(call ARCHIVE, $@, $${obj}); \
done ; )
@touch .built
$(HOST_OBJS): %.o: %.c
$(HOSTCC) -c $(HOSTCFLAGS) $< -o $@
@ -100,6 +99,7 @@ $(HOST_BIN): $(HOST_OBJS)
$(HOSTCC) $(HOSTLDFLAGS) $(HOST_OBJS) -o $@
.built: $(TARG_BIN) $(HOST_BIN)
@touch .built
context:

View File

@ -1635,3 +1635,12 @@
* syscall/: The beginnings of an optional syscall kernal interface.
* tools/mksyscall.c: Add a tool that will auto-generate syscall proxies
and stubs from a comma-separated-value (CSV) data file.
* arch/arm/src/cortexm3/mpu.h: Add a header file describing the Cortex-M3
MPU registers.
* Numerous modifications to the build system. Various people have reported
build problems since the re-organization and release of NuttX-6.0. I am
unable to replicate the build problems in my environment, but the changes
have be incorporated in hope of correcting the build issues in other
environments.

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH Library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,12 +35,12 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/uip=.built_always
CONFIGURED_APPS += examples/uip
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/webserver=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/webserver

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest=.built_always
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,20 +35,20 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Networking support
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/tftpc=.built_always
CONFIGURED_APPS += netutils/webclient=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/tftpc
CONFIGURED_APPS += netutils/webclient
endif

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/hidkbd=.built_always
CONFIGURED_APPS += examples/hidkbd

View File

@ -35,20 +35,20 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Networking support
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/tftpc=.built_always
CONFIGURED_APPS += netutils/webclient=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/tftpc
CONFIGURED_APPS += netutils/webclient
endif

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/wlan=.built_always
CONFIGURED_APPS += examples/wlan

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,10 +35,10 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbserial=.built_always
CONFIGURED_APPS += examples/usbserial

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbstorage=.built_always
CONFIGURED_APPS += examples/usbstorage

View File

@ -35,12 +35,12 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/uip=.built_always
CONFIGURED_APPS += examples/uip
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/webserver=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/webserver

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest=.built_always
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH Library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nxflat=.built_always
CONFIGURED_APPS += examples/nxflat

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,10 +35,10 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/thttpd=.built_always
CONFIGURED_APPS += examples/thttpd
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/thttpd=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/thttpd

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,10 +35,10 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/dhcpd=.built_always
CONFIGURED_APPS += examples/dhcpd
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpd=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpd

View File

@ -35,13 +35,13 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/uip=.built_always
CONFIGURED_APPS += examples/uip
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/webserver=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/webserver

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest=.built_always
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,20 +35,20 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Networking support
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/tftpc=.built_always
CONFIGURED_APPS += netutils/webclient=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/tftpc
CONFIGURED_APPS += netutils/webclient
endif

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/poll=.built_always
CONFIGURED_APPS += examples/poll
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,20 +35,20 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Networking support
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/tftpc=.built_always
CONFIGURED_APPS += netutils/webclient=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/tftpc
CONFIGURED_APPS += netutils/webclient
endif

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nx=.built_always
CONFIGURED_APPS += examples/nx

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,20 +35,20 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Networking support
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/tftpc=.built_always
CONFIGURED_APPS += netutils/webclient=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/tftpc
CONFIGURED_APPS += netutils/webclient
endif

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nx=.built_always
CONFIGURED_APPS += examples/nx

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/hidkbd=.built_always
CONFIGURED_APPS += examples/hidkbd

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH Library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbserial=.built_always
CONFIGURED_APPS += examples/usbserial

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbstorage=.built_always
CONFIGURED_APPS += examples/usbstorage

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest=.built_always
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,20 +35,20 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Networking support
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/tftpc=.built_always
CONFIGURED_APPS += netutils/webclient=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/tftpc
CONFIGURED_APPS += netutils/webclient
endif

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/poll=.built_always
CONFIGURED_APPS += examples/poll
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,10 +35,10 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/thttpd=.built_always
CONFIGURED_APPS += examples/thttpd
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/thttpd=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/thttpd

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/udp=.built_always
CONFIGURED_APPS += examples/udp
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,12 +35,12 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/uip=.built_always
CONFIGURED_APPS += examples/uip
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/webserver=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/webserver

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbserial=.built_always
CONFIGURED_APPS += examples/usbserial

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbstorage=.built_always
CONFIGURED_APPS += examples/usbstorage

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/hidkbd=.built_always
CONFIGURED_APPS += examples/hidkbd

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest=.built_always
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,20 +35,20 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Networking support
ifeq ($(CONFIG_NET),y)
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/dhcpc=.built_always
CONFIGURED_APPS += netutils/resolv=.built_always
CONFIGURED_APPS += netutils/tftpc=.built_always
CONFIGURED_APPS += netutils/webclient=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/dhcpc
CONFIGURED_APPS += netutils/resolv
CONFIGURED_APPS += netutils/tftpc
CONFIGURED_APPS += netutils/webclient
endif

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nx=.built_always
CONFIGURED_APPS += examples/nx

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,10 +35,10 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/thttpd=.built_always
CONFIGURED_APPS += examples/thttpd
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/thttpd=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/thttpd

View File

@ -35,10 +35,10 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/thttpd=.built_always
CONFIGURED_APPS += examples/thttpd
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/thttpd=.built_always
CONFIGURED_APPS += netutils/uiplib
CONFIGURED_APPS += netutils/thttpd

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbserial=.built_always
CONFIGURED_APPS += examples/usbserial

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbstorage=.built_always
CONFIGURED_APPS += examples/usbstorage

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/wlan=.built_always
CONFIGURED_APPS += examples/wlan

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest=.built_always
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nx=.built_always
CONFIGURED_APPS += examples/nx

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/mount=.built_always
CONFIGURED_APPS += examples/mount

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nettest=.built_always
CONFIGURED_APPS += examples/nettest
# Networking support
CONFIGURED_APPS += netutils/uiplib=.built_always
CONFIGURED_APPS += netutils/uiplib

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH Library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nx=.built_always
CONFIGURED_APPS += examples/nx

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/pashello=.built_always
CONFIGURED_APPS += examples/pashello

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/null=.built_always
CONFIGURED_APPS += examples/null

View File

@ -35,7 +35,7 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbserial=.built_always
CONFIGURED_APPS += examples/usbserial

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/usbstorage=.built_always
CONFIGURED_APPS += examples/usbstorage

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -44,32 +44,32 @@
#
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# Invoke the following application after NuttX starts
#CONFIG_BUILTIN_APP_START="hello"
# Application Libraries
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib
# Individual selection of built-in applications:
# Hello world provide a simple skeleton/demo application
CONFIGURED_APPS += vsn/hello=.built_always
CONFIGURED_APPS += vsn/hello
# Provide poweroff command to switch off the board
CONFIGURED_APPS += vsn/poweroff=.built_always
CONFIGURED_APPS += vsn/poweroff
# Provide SDcard tool
CONFIGURED_APPS += vsn/sdcard=.built_always
CONFIGURED_APPS += vsn/sdcard
# Provide RAMTRON tool
CONFIGURED_APPS += vsn/ramtron=.built_always
CONFIGURED_APPS += vsn/ramtron
# Provide UNIX style free
CONFIGURED_APPS += vsn/free=.built_always
CONFIGURED_APPS += vsn/free
# Provide JAVA Virtual Machine (the Darjeeling JVM)
#CONFIGURED_APPS += vsn/jvm=.built_always
#CONFIGURED_APPS += vsn/jvm

View File

@ -35,9 +35,9 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/nsh=.built_always
CONFIGURED_APPS += examples/nsh
# The NSH Library
CONFIGURED_APPS += nshlib=.built_always
CONFIGURED_APPS += nshlib

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/ostest=.built_always
CONFIGURED_APPS += examples/ostest

View File

@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
CONFIGURED_APPS += examples/pashello=.built_always
CONFIGURED_APPS += examples/pashello

Some files were not shown because too many files have changed in this diff Show More