mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 04:39:01 +00:00
apps/Makefile: Fix one missing instance of CONFIG_EXAMPLES_NSH* that was not changes to CONFIG_SYSTEM_NSH*.
This commit is contained in:
parent
3c4ca6a35e
commit
8e249eb25f
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -76,7 +76,7 @@ BIN = libapps$(LIBEXT)
|
|||
# Symbol table for loadable apps.
|
||||
|
||||
SYMTABSRC = $(APPDIR)$(DELIM)symtab_apps.c
|
||||
SYMTABOBJ = $(APPDIR)$(DELIM)symtab_apps.o
|
||||
SYMTABOBJ = $(APPDIR)$(DELIM)symtab_apps$(OBJEXT)
|
||||
|
||||
# Build targets
|
||||
|
||||
|
|
@ -103,7 +103,7 @@ $(foreach SDIR, $(CLEANDIRS), $(eval $(call SDIR_template,$(SDIR),clean)))
|
|||
$(foreach SDIR, $(CLEANDIRS), $(eval $(call SDIR_template,$(SDIR),distclean)))
|
||||
|
||||
make_symbols:
|
||||
ifeq ($(CONFIG_EXAMPLES_NSH_SYMTAB),y)
|
||||
ifeq ($(CONFIG_SYSTEM_NSH_SYMTAB),y)
|
||||
mkdir -p $(BIN_DIR)
|
||||
$(Q) $(APPDIR)$(DELIM)tools$(DELIM)mksymtab.sh $(BIN_DIR) $(SYMTABSRC)
|
||||
$(call COMPILE, $(SYMTABSRC), $(SYMTABOBJ))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue