summaryrefslogtreecommitdiff
path: root/apps/system/ramtest/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-07 09:17:23 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-07 09:17:23 -0600
commit14ba1f33ae8f55a3c7f556cf28647c7116b6c3c4 (patch)
tree20444f1055f8c11f92fa29978ed0b2bd3a9559f6 /apps/system/ramtest/Makefile
parentfb7a08922178beb0cb053a00d1377366d4279e87 (diff)
downloadnuttx-14ba1f33ae8f55a3c7f556cf28647c7116b6c3c4.tar.gz
nuttx-14ba1f33ae8f55a3c7f556cf28647c7116b6c3c4.tar.bz2
nuttx-14ba1f33ae8f55a3c7f556cf28647c7116b6c3c4.zip
Changes to many Makefiles. For kernel buil object containing main cannot go into library because of name collisions. The object file must be handled as a special case in every Makefile
Diffstat (limited to 'apps/system/ramtest/Makefile')
-rw-r--r--apps/system/ramtest/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/system/ramtest/Makefile b/apps/system/ramtest/Makefile
index 7af004b15..2c443b08b 100644
--- a/apps/system/ramtest/Makefile
+++ b/apps/system/ramtest/Makefile
@@ -47,7 +47,8 @@ PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 768
ASRCS =
-CSRCS = ramtest.c
+CSRCS =
+MAINSRC = ramtest.c
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))