summaryrefslogtreecommitdiff
path: root/apps/examples/usbstorage/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-25 20:50:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-25 20:50:57 +0000
commit84ebd8284c5c2f190ee154e0124fc5ddccbb0361 (patch)
tree06de0c56741cb003cbee8ad7eb8e0f0f77adc2b1 /apps/examples/usbstorage/Makefile
parent657f0d2092b325bbaec6d61cce725295e38df61e (diff)
downloadnuttx-84ebd8284c5c2f190ee154e0124fc5ddccbb0361.tar.gz
nuttx-84ebd8284c5c2f190ee154e0124fc5ddccbb0361.tar.bz2
nuttx-84ebd8284c5c2f190ee154e0124fc5ddccbb0361.zip
Massive name change USB STRG -> USB MSC
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4335 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/usbstorage/Makefile')
-rw-r--r--apps/examples/usbstorage/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/examples/usbstorage/Makefile b/apps/examples/usbstorage/Makefile
index 98181e0fd..d68a759e8 100644
--- a/apps/examples/usbstorage/Makefile
+++ b/apps/examples/usbstorage/Makefile
@@ -1,8 +1,8 @@
############################################################################
# apps/examples/usbstorage/Makefile
#
-# Copyright (C) 2008, 2010-2011 Gregory Nutt. All rights reserved.
-# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+# Copyright (C) 2008, 2010-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
@@ -40,7 +40,7 @@ include $(APPDIR)/Make.defs
# USB device mass storage example
ASRCS =
-CSRCS = usbstrg_main.c
+CSRCS = usbmsc_main.c
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
@@ -86,7 +86,7 @@ $(COBJS): %$(OBJEXT): %.c
@touch .built
.context:
-ifeq ($(CONFIG_EXAMPLES_USBSTRG_BUILTIN),y)
+ifeq ($(CONFIG_EXAMPLES_USBMSC_BUILTIN),y)
$(call REGISTER,$(APPNAME1),$(PRIORITY1),$(STACKSIZE1),$(APPNAME1)_main)
$(call REGISTER,$(APPNAME2),$(PRIORITY2),$(STACKSIZE2),$(APPNAME2)_main)
@touch $@