summaryrefslogtreecommitdiff
path: root/apps/examples/relays/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-05 20:02:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-05 20:02:56 +0000
commit457f849544b54a0ba4c773e082b37c34fa726268 (patch)
treebdd380d9b47ff56c649468de2983d0516739beed /apps/examples/relays/Makefile
parent45630c3d55a534689f83fd8871c06399934645e1 (diff)
downloadnuttx-457f849544b54a0ba4c773e082b37c34fa726268.tar.gz
nuttx-457f849544b54a0ba4c773e082b37c34fa726268.tar.bz2
nuttx-457f849544b54a0ba4c773e082b37c34fa726268.zip
Make ostest RR scheduler test use less memory from Freddie Chopin; Plus build fix from Darcy Gong
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5314 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/relays/Makefile')
-rw-r--r--apps/examples/relays/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/examples/relays/Makefile b/apps/examples/relays/Makefile
index 6641c94b4..4a6530693 100644
--- a/apps/examples/relays/Makefile
+++ b/apps/examples/relays/Makefile
@@ -39,14 +39,14 @@ include $(APPDIR)/Make.defs
# relays Example
-ASRC =
-CSRC = relays_main.c
+ASRCS =
+CSRCS = relays_main.c
-AOBJ = $(ASRCS:.S=$(OBJEXT))
-COBJ = $(CSRCS:.c=$(OBJEXT))
+AOBJS = $(ASRCS:.S=$(OBJEXT))
+COBJS = $(CSRCS:.c=$(OBJEXT))
-SRC = $(ASRCS) $(CSRCS)
-OBJ = $(AOBJS) $(COBJS)
+SRCS = $(ASRCS) $(CSRCS)
+OBJS = $(AOBJS) $(COBJS)
ifeq ($(WINTOOL),y)
BIN = "${shell cygpath -w $(APPDIR)/libapps$(LIBEXT)}"