gustavonihei commented on a change in pull request #4689: URL: https://github.com/apache/incubator-nuttx/pull/4689#discussion_r731236149
########## File path: binfmt/Makefile ########## @@ -22,54 +22,54 @@ include $(TOPDIR)/Make.defs # Basic BINFMT source files -BINFMT_CSRCS = binfmt_globals.c binfmt_initialize.c binfmt_register.c binfmt_unregister.c -BINFMT_CSRCS += binfmt_loadmodule.c binfmt_unloadmodule.c binfmt_execmodule.c -BINFMT_CSRCS += binfmt_exec.c binfmt_copyargv.c binfmt_dumpmodule.c +CSRCS = binfmt_globals.c binfmt_initialize.c binfmt_register.c binfmt_unregister.c +CSRCS += binfmt_loadmodule.c binfmt_unloadmodule.c binfmt_execmodule.c +CSRCS += binfmt_exec.c binfmt_copyargv.c binfmt_dumpmodule.c ifeq ($(CONFIG_BINFMT_LOADABLE),y) -BINFMT_CSRCS += binfmt_exit.c +CSRCS += binfmt_exit.c endif ifeq ($(CONFIG_LIBC_EXECFUNCS),y) -BINFMT_CSRCS += binfmt_execsymtab.c +CSRCS += binfmt_execsymtab.c endif # Builtin application interfaces ifeq ($(CONFIG_BUILTIN),y) -BINFMT_CSRCS += builtin.c +CSRCS += builtin.c endif # Add configured binary modules include libnxflat/Make.defs include libelf/Make.defs -BINFMT_AOBJS = $(BINFMT_ASRCS:.S=$(OBJEXT)) -BINFMT_COBJS = $(BINFMT_CSRCS:.c=$(OBJEXT)) +AOBJS = $(BINFMT_ASRCS:.S=$(OBJEXT)) Review comment: Any reason for skipping `BINFMT_ASRCS`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org