Makefile 1.1 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5

hostprogs-y	:= genksyms
always		:= $(hostprogs-y)

6
genksyms-objs	:= genksyms.o parse.tab.o lex.lex.o
L
Linus Torvalds 已提交
7

8 9 10 11 12 13 14 15 16
# FIXME: fix the ambiguous grammar in parse.y and delete this hack
#
# Suppress shift/reduce, reduce/reduce conflicts warnings
# unless W=1 is specified.
#
# Just in case, run "$(YACC) --version" without suppressing stderr
# so that 'bison: not found' will be displayed if it is missing.
ifeq ($(findstring 1,$(KBUILD_ENABLE_EXTRA_GCC_CHECKS)),)

17
quiet_cmd_bison_no_warn = $(quiet_cmd_bison)
18 19 20 21 22 23
      cmd_bison_no_warn = $(YACC) --version >/dev/null; \
			  $(cmd_bison) 2>/dev/null

$(obj)/parse.tab.c: $(src)/parse.y FORCE
	$(call if_changed,bison_no_warn)

24
quiet_cmd_bison_h_no_warn = $(quiet_cmd_bison_h)
25 26 27 28 29 30 31 32
      cmd_bison_h_no_warn = $(YACC) --version >/dev/null; \
			    $(cmd_bison_h) 2>/dev/null

$(obj)/parse.tab.h: $(src)/parse.y FORCE
	$(call if_changed,bison_h_no_warn)

endif

L
Linus Torvalds 已提交
33
# -I needed for generated C source (shipped source)
34
HOSTCFLAGS_parse.tab.o := -I$(src)
35
HOSTCFLAGS_lex.lex.o := -I$(src)
L
Linus Torvalds 已提交
36 37

# dependencies on generated files need to be listed explicitly
38
$(obj)/lex.lex.o: $(obj)/parse.tab.h