summaryrefslogtreecommitdiff
path: root/apps/system/hex2bin
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/hex2bin')
-rw-r--r--apps/system/hex2bin/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/system/hex2bin/Makefile b/apps/system/hex2bin/Makefile
index ce50879b1..7b9acbade 100644
--- a/apps/system/hex2bin/Makefile
+++ b/apps/system/hex2bin/Makefile
@@ -40,7 +40,11 @@ include $(APPDIR)/Make.defs
# I2C tool
ASRCS =
-CSRCS = hex2bin.c hex2bin_main.c
+CSRCS = hex2bin.c
+
+ifeq ($(CONFIG_SYSTEM_HEX2BIN_BUILTIN),y)
+CSRCS += hex2bin_main.c
+endif
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
@@ -81,7 +85,7 @@ $(COBJS): %$(OBJEXT): %.c
# Register application
-ifeq ($(CONFIG_SYSTEM_HEX2BIN_BUILTINS),y)
+ifeq ($(CONFIG_SYSTEM_HEX2BIN_BUILTIN),y)
$(BUILTIN_REGISTRY)$(DELIM)hex2bin.bdat: $(DEPCONFIG) Makefile
$(call REGISTER,"hex2bin",$(PRIORITY),$(STACKSIZE),hex2bin_main)