mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-22 14:12:26 +00:00
acce58834d
This commit introduces the following upstream changes: 272a72103012 kconfig: don't crash on NULL expressions in expr_eq() 46b2afa6890d kconfig: be more helpful if pkg-config is missing 5d8b42aa7ccb kconfig: Add option to get the full help text with listnewconfig a64c0440dda1 kbuild: Wrap long "make help" text lines 521b29b6ff53 kconfig: split util.c out of parser.y 60bef52c7a68 merge_config.sh: ignore unwanted grep errors 54b8ae66ae1a kbuild: change *FLAGS_<basetarget>.o to take the path relative to $(obj) 1634f2bfdb84 kbuild: remove clean-dirs syntax cdfca821571d merge_config.sh: Check error codes from make Signed-off-by: Chris Packham <judge.packham@gmail.com>
51 lines
1.8 KiB
Makefile
51 lines
1.8 KiB
Makefile
## vim: set noet :
|
|
|
|
## FIXME when kconfig is split into a subpackage, need to remove this option from sub-configure
|
|
transform = s,x,x,
|
|
|
|
pkglibexec_PROGRAMS = conf nconf mconf
|
|
|
|
EXTRA_DIST = parser.y lexer.l \
|
|
expr.h list.h lkc.h lkc_proto.h nconf.h lxdialog/dialog.h \
|
|
confdata.c expr.c kconf_id.c menu.c symbol.c util.c
|
|
|
|
CLEANFILES = lexer.lex.c parser.tab.c parser.tab.h
|
|
BUILT_SOURCES = lexer.lex.c parser.tab.c
|
|
|
|
AM_LFLAGS = -L
|
|
AM_YFLAGS = -t -l
|
|
AM_CPPFLAGS = -include config.h -DCONFIG_=\"CT_\"
|
|
AM_LIBTOOLFLAGS = --tag CC
|
|
|
|
conf_SOURCES = conf.c confdata.c expr.c symbol.c preprocess.c util.c lexer.lex.c parser.tab.c
|
|
conf_LDADD = $(LIBINTL)
|
|
|
|
nconf_SOURCES = nconf.c nconf.gui.c confdata.c expr.c symbol.c preprocess.c util.c lexer.lex.c parser.tab.c
|
|
nconf_CFLAGS = $(CURSES_CFLAGS)
|
|
nconf_LDADD = $(MENU_LIBS) $(PANEL_LIBS) $(CURSES_LIBS) $(LIBINTL)
|
|
|
|
mconf_SOURCES = mconf.c confdata.c expr.c symbol.c preprocess.c util.c lexer.lex.c parser.tab.c \
|
|
lxdialog/checklist.c lxdialog/inputbox.c \
|
|
lxdialog/menubox.c lxdialog/textbox.c lxdialog/util.c \
|
|
lxdialog/yesno.c
|
|
mconf_LDADD = $(CURSES_LIBS) $(LIBINTL)
|
|
|
|
# automake's support for yacc/lex/gperf is too idiosyncratic. It doesn't
|
|
# support a common pattern of including lex-generated file into yacc, nor does
|
|
# it support using a different base name for the generated C files.
|
|
YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS)
|
|
AM_V_YACC = $(am__v_YACC_@AM_V@)
|
|
am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@)
|
|
am__v_YACC_0 = @echo " YACC " $@;
|
|
|
|
LEXCOMPILE = $(LEX) $(AM_LFLAGS) $(LFLAGS)
|
|
AM_V_LEX = $(am__v_LEX_@AM_V@)
|
|
am__v_LEX_ = $(am__v_LEX_@AM_DEFAULT_V@)
|
|
am__v_LEX_0 = @echo " LEX " $@;
|
|
|
|
parser.tab.c: parser.y
|
|
$(AM_V_YACC)$(YACCCOMPILE) -o$@ --defines=parser.tab.h $<
|
|
|
|
lexer.lex.c: lexer.l
|
|
$(AM_V_LEX)$(LEXCOMPILE) -o$@ $<
|