summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-12-25 17:22:58 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-12-25 17:22:58 +0000
commit81167b4592a18d9d80d1ed7795953addb71844c8 (patch)
tree2e052235e4dcf59a648996f8a77a98e9ad5e904b /apps
parent62b8fb69badccc3f10fb5184b9d375fea23ca59f (diff)
downloadnuttx-81167b4592a18d9d80d1ed7795953addb71844c8.tar.gz
nuttx-81167b4592a18d9d80d1ed7795953addb71844c8.tar.bz2
nuttx-81167b4592a18d9d80d1ed7795953addb71844c8.zip
Add logic to serialize and marshal out-of-band keyboard commands
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5460 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps')
-rw-r--r--apps/Make.defs4
-rw-r--r--apps/builtin/Makefile6
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/Make.defs b/apps/Make.defs
index c62999804..f7e6aa08d 100644
--- a/apps/Make.defs
+++ b/apps/Make.defs
@@ -37,9 +37,9 @@
BUILTIN_REGISTRY = $(APPDIR)$(DELIM)builtin$(DELIM)registry
ifeq ($(CONFIG_NUTTX_NEWCONFIG),y)
-DEPCONFIG = $(TOPDIR)/.config
+DEPCONFIG = $(TOPDIR)$(DELIM).config
else
-DEPCONFIG = $(TOPDIR)/.config $(APPDIR)/.config
+DEPCONFIG = $(TOPDIR)$(DELIM).config $(APPDIR)$(DELIM).config
endif
define REGISTER
diff --git a/apps/builtin/Makefile b/apps/builtin/Makefile
index ccb860c88..8c8928886 100644
--- a/apps/builtin/Makefile
+++ b/apps/builtin/Makefile
@@ -75,10 +75,10 @@ $(AOBJS): %$(OBJEXT): %.S
$(COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
-registry/.updated:
+registry$(DELIM).updated:
$(V) $(MAKE) -C registry .updated TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
-builtin_list.h: registry/.updated
+builtin_list.h: registry$(DELIM).updated
$(call DELFILE, builtin_list.h)
$(Q) touch builtin_list.h
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
@@ -92,7 +92,7 @@ else
)
endif
-builtin_proto.h: registry/.updated
+builtin_proto.h: registry$(DELIM).updated
$(call DELFILE, builtin_proto.h)
$(Q) touch builtin_proto.h
ifeq ($(CONFIG_WINDOWS_NATIVE),y)