From 32fe084a178ac56eae2e543eba72d309185adba9 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 10 May 2011 18:18:19 +0000 Subject: Ported Ficl to NuttX apps/ git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3584 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/Documentation/NuttX.html | 2 ++ nuttx/Documentation/README.html | 6 ++++-- nuttx/Makefile | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) (limited to 'nuttx') diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html index 391849996..57b0ccfde 100644 --- a/nuttx/Documentation/NuttX.html +++ b/nuttx/Documentation/NuttX.html @@ -2204,6 +2204,8 @@ apps-6.3 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> * apps/interpreter: Add a directory to hold interpreters. The Pascal add- on module now installs and builds under this directory. + * apps/interpreter/ficl: Added logic to build Ficl (the "Forth Inspired + Command Language"). See http://ficl.sourceforge.net/. pascal-3.0 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> diff --git a/nuttx/Documentation/README.html b/nuttx/Documentation/README.html index c753d654d..373f64192 100755 --- a/nuttx/Documentation/README.html +++ b/nuttx/Documentation/README.html @@ -8,7 +8,7 @@

NuttX README Files

-

Last Updated: May 9, 2010

+

Last Updated: May 10, 2010

@@ -184,11 +184,13 @@ | `- tools/ | `- README.txt `- apps/ + |- interpreters/ + | `- README.txt |- netutils/ | | |- telnetd/README.txt | `- README |- nshlib/ - | |- README.txt + | `- README.txt |- examples/ | |- pashello/README.txt | `- README.txt diff --git a/nuttx/Makefile b/nuttx/Makefile index b74f9e225..07c07ddec 100644 --- a/nuttx/Makefile +++ b/nuttx/Makefile @@ -268,7 +268,9 @@ include/nuttx/config.h: $(TOPDIR)/.config tools/mkconfig include/apps: Make.defs ifneq ($(APPDIR),) - @$(DIRLINK) $(TOPDIR)/$(APPDIR)/include include/apps + @if [ -d $(TOPDIR)/$(APPDIR)/include ]; then \ + $(DIRLINK) $(TOPDIR)/$(APPDIR)/include include/apps; \ + fi endif # Link the arch//include directory to include/arch -- cgit v1.2.3