mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
880f4499bb
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
14 lines
348 B
Makefile
14 lines
348 B
Makefile
|
|
hostprogs-y := genksyms
|
|
always := $(hostprogs-y)
|
|
|
|
genksyms-objs := genksyms.o parse.tab.o lex.lex.o
|
|
|
|
# -I needed for generated C source (shipped source)
|
|
HOSTCFLAGS_parse.tab.o := -I$(src)
|
|
HOSTCFLAGS_lex.lex.o := -I$(src)
|
|
|
|
# dependencies on generated files need to be listed explicitly
|
|
$(obj)/lex.lex.o: $(obj)/keywords.hash.c $(obj)/parse.tab.h
|
|
|