summaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-10-05 07:09:22 (GMT)
committerAlexey Neyman <stilor@att.net>2018-04-07 19:02:33 (GMT)
commitd401afbddaae56093cce388e62f7ba4d9d68a327 (patch)
tree5b1c7fdc13dd2ade2dbe8576045427e072d1f4d1 /kconfig
parent1ce2eab963a004ba352a5cea800e2765a7c6affd (diff)
Get rid of sub{lib,doc}dir
They don't make sense - using same ct-ng won't work with different versions, so they cannot coexist in the same prefix. Also localize other configure variables so that their usage is easier to track. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'kconfig')
-rw-r--r--kconfig/Makefile.in16
1 files changed, 14 insertions, 2 deletions
diff --git a/kconfig/Makefile.in b/kconfig/Makefile.in
index 630ac14..26a4404 100644
--- a/kconfig/Makefile.in
+++ b/kconfig/Makefile.in
@@ -2,6 +2,18 @@
# Hmmm! Cheesy build!
# Or: where I can unveil my make-fu... :-]
+install = @INSTALL@
+sed = @SED@
+gperf = @GPERF@
+gperf_len_type = @GPERF_LEN_TYPE@
+gettext = @gettext@
+curses_hdr = @ac_ct_curses_hdr@
+CC = @CC@
+CFLAGS = @CFLAGS@
+LDFLAGS = @LDFLAGS@
+LIBS = @LIBS@
+INTL_LIBS = @INTL_LIBS@
+
__silent = $(if $(V),,@printf ' %-7s %s\n' '$1' '$(if $2,$2,$(strip $<))' && )
__silent_rm = $(call __silent,RM,$1)rm -f $1
@@ -103,10 +115,10 @@ conf: $(COMMON_OBJ) $(conf_OBJ)
install: $(patsubst %,install-%,$(PROGS)) install-kconfig.mk
$(patsubst %,install-%,$(PROGS)): install-%: %
- $(call __silent,INSTALL,$<)install -m 0755 $< $(DESTDIR)/$<
+ $(call __silent,INSTALL,$<)$(install) -m 0755 $< $(DESTDIR)/$<
install-kconfig.mk: kconfig.mk
- $(call __silent,INSTALL,$<)install -m 0644 $< $(DESTDIR)/$<
+ $(call __silent,INSTALL,$<)$(install) -m 0644 $< $(DESTDIR)/$<
#-----------------------------------------------------------
# Cleaning up the mess...