aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--kconfig/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 2a33cf54..fe23a332 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
CFLAGS = -Wall -Wundef -Wno-char-subscripts -Os
CC = $(CROSS_COMPILE)gcc $(CFLAGS) -funsigned-char
STRIP = $(CROSS_COMPILE)strip
-HOST_CC = gcc $(CFLAGS) -funsigned-char
+HOSTCC = gcc $(CFLAGS) -funsigned-char
all: toybox
@@ -52,7 +52,7 @@ toybox: toybox_unstripped
$(STRIP) toybox_unstripped -o toybox
instlist: toybox
- $(HOST_CC) -I . scripts/install.c -o instlist
+ $(HOSTCC) -I . scripts/install.c -o instlist
install_flat: instlist
@mkdir -p $(PREFIX)/
diff --git a/kconfig/Makefile b/kconfig/Makefile
index 95e621e9..f998e7bf 100644
--- a/kconfig/Makefile
+++ b/kconfig/Makefile
@@ -52,11 +52,11 @@ SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c
gen_config.h: .config
kconfig/mconf: $(SHIPPED)
- $(HOST_CC) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
+ $(HOSTCC) -o $@ kconfig/{mconf.c,zconf.tab.c,lxdialog/*.c} \
-lcurses -DCURSES_LOC="<ncurses.h>" -DKBUILD_NO_NLS=1
kconfig/conf: $(SHIPPED)
- $(HOST_CC) -o $@ kconfig/{conf.c,zconf.tab.c} -DKBUILD_NO_NLS=1
+ $(HOSTCC) -o $@ kconfig/{conf.c,zconf.tab.c} -DKBUILD_NO_NLS=1
clean::
rm -f $(wildcard kconfig/*zconf*.c) kconfig/{conf,mconf}