summaryrefslogtreecommitdiff
path: root/nuttx/examples/nx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-17 17:56:03 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-17 17:56:03 +0000
commitfa1acc678f1b37684ec1c801743d28afd384acad (patch)
treeb524c493bf98a4e39a6e7197de5438330cf5cf88 /nuttx/examples/nx
parent8efbdd8cad0fb23b7d985495b749b94ef1fffb0e (diff)
downloadpx4-nuttx-fa1acc678f1b37684ec1c801743d28afd384acad.tar.gz
px4-nuttx-fa1acc678f1b37684ec1c801743d28afd384acad.tar.bz2
px4-nuttx-fa1acc678f1b37684ec1c801743d28afd384acad.zip
Looks like part of Makefile was accidentally removed
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2369 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/nx')
-rw-r--r--nuttx/examples/nx/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/nuttx/examples/nx/Makefile b/nuttx/examples/nx/Makefile
index da10fc50d..002e255ec 100644
--- a/nuttx/examples/nx/Makefile
+++ b/nuttx/examples/nx/Makefile
@@ -39,9 +39,14 @@
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
-CSRCS =
+CSRCS = nx_main.c nx_events.c nx_kbdin.c
+ifeq ($(CONFIG_NX_MULTIUSER),y)
+CSRCS += nx_server.c
+endif
+
COBJS = $(CSRCS:.c=$(OBJEXT))
+
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)