summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/README.txt2
-rw-r--r--apps/examples/usbterm/Makefile8
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/examples/README.txt b/apps/examples/README.txt
index 887266e2a..223f34e81 100644
--- a/apps/examples/README.txt
+++ b/apps/examples/README.txt
@@ -1131,7 +1131,7 @@ examples/usbterm
Configuration options:
- CONFIG_EXAMPLES_UBSTERM_BUILTIN - Build the usbterm example as an NSH
+ CONFIG_EXAMPLES_USBTERM_BUILTIN - Build the usbterm example as an NSH
built-in command. NOTE: This is not fully functional as of this
writing.. It should work, but there is no mechanism in place yet
to exit the USB terminal program and return to NSH.
diff --git a/apps/examples/usbterm/Makefile b/apps/examples/usbterm/Makefile
index fe9b77fb8..8db1f9897 100644
--- a/apps/examples/usbterm/Makefile
+++ b/apps/examples/usbterm/Makefile
@@ -1,8 +1,8 @@
############################################################################
# apps/examples/usbterm/Makefile
#
-# Copyright (C) 2011 Gregory Nutt. All rights reserved.
-# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+# 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
@@ -67,7 +67,7 @@ STACKSIZE = 2048
VPATH =
all: .built
-.PHONY: clean depend distclean
+.PHONY: context clean depend distclean
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)
@@ -82,7 +82,7 @@ $(COBJS): %$(OBJEXT): %.c
@touch .built
.context:
-ifeq ($(CONFIG_EXAMPLES_UBSTERM_BUILTIN),y)
+ifeq ($(CONFIG_EXAMPLES_USBTERM_BUILTIN),y)
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
@touch $@
endif