mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-06 03:46:35 +08:00
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
This commit is contained in:
parent
e1dad951f1
commit
e2bf277b80
@ -37,9 +37,9 @@
|
|||||||
BUILTIN_REGISTRY = $(APPDIR)$(DELIM)builtin$(DELIM)registry
|
BUILTIN_REGISTRY = $(APPDIR)$(DELIM)builtin$(DELIM)registry
|
||||||
|
|
||||||
ifeq ($(CONFIG_NUTTX_NEWCONFIG),y)
|
ifeq ($(CONFIG_NUTTX_NEWCONFIG),y)
|
||||||
DEPCONFIG = $(TOPDIR)/.config
|
DEPCONFIG = $(TOPDIR)$(DELIM).config
|
||||||
else
|
else
|
||||||
DEPCONFIG = $(TOPDIR)/.config $(APPDIR)/.config
|
DEPCONFIG = $(TOPDIR)$(DELIM).config $(APPDIR)$(DELIM).config
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define REGISTER
|
define REGISTER
|
||||||
|
@ -75,10 +75,10 @@ $(AOBJS): %$(OBJEXT): %.S
|
|||||||
$(COBJS): %$(OBJEXT): %.c
|
$(COBJS): %$(OBJEXT): %.c
|
||||||
$(call COMPILE, $<, $@)
|
$(call COMPILE, $<, $@)
|
||||||
|
|
||||||
registry/.updated:
|
registry$(DELIM).updated:
|
||||||
$(V) $(MAKE) -C registry .updated TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
$(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)
|
$(call DELFILE, builtin_list.h)
|
||||||
$(Q) touch builtin_list.h
|
$(Q) touch builtin_list.h
|
||||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||||
@ -92,7 +92,7 @@ else
|
|||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
builtin_proto.h: registry/.updated
|
builtin_proto.h: registry$(DELIM).updated
|
||||||
$(call DELFILE, builtin_proto.h)
|
$(call DELFILE, builtin_proto.h)
|
||||||
$(Q) touch builtin_proto.h
|
$(Q) touch builtin_proto.h
|
||||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user