blob: 19d9bcadc0ccd448fd4cff3e687ec61e3f95001a [file] [log] [blame]
Josh Poimboeufc0dd6716862016-02-28 22:22:34 -06001OBJECT_FILES_NON_STANDARD := y
2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003hostprogs-y := modpost mk_elfconfig
4always := $(hostprogs-y) empty.o
5
6modpost-objs := modpost.o file2alias.o sumversion.o
7
Andreas Schwab6543bec2013-01-20 17:58:47 +01008devicetable-offsets-file := devicetable-offsets.h
9
10define sed-y
11 "/^->/{s:->#\(.*\):/* \1 */:; \
12 s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \
13 s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \
14 s:->::; p;}"
15endef
16
17quiet_cmd_offsets = GEN $@
18define cmd_offsets
19 (set -e; \
Geert Uytterhoevenf82935e2013-05-17 14:18:35 +020020 echo "#ifndef __DEVICETABLE_OFFSETS_H__"; \
21 echo "#define __DEVICETABLE_OFFSETS_H__"; \
Andreas Schwab6543bec2013-01-20 17:58:47 +010022 echo "/*"; \
23 echo " * DO NOT MODIFY."; \
24 echo " *"; \
25 echo " * This file was generated by Kbuild"; \
26 echo " *"; \
27 echo " */"; \
28 echo ""; \
29 sed -ne $(sed-y) $<; \
30 echo ""; \
31 echo "#endif" ) > $@
32endef
33
Jan Beulichbd701342013-05-29 13:18:56 +010034$(obj)/$(devicetable-offsets-file): $(obj)/devicetable-offsets.s
35 $(call if_changed,offsets)
Andreas Schwab6543bec2013-01-20 17:58:47 +010036
Jan Beulichbd701342013-05-29 13:18:56 +010037targets += $(devicetable-offsets-file) devicetable-offsets.s
Andreas Schwab22fc4272013-05-04 16:32:53 +020038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039# dependencies on generated files need to be listed explicitly
40
41$(obj)/modpost.o $(obj)/file2alias.o $(obj)/sumversion.o: $(obj)/elfconfig.h
Andreas Schwab6543bec2013-01-20 17:58:47 +010042$(obj)/file2alias.o: $(obj)/$(devicetable-offsets-file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44quiet_cmd_elfconfig = MKELF $@
Alan Jenkins9e1b9b82009-11-07 21:03:54 +000045 cmd_elfconfig = $(obj)/mk_elfconfig < $< > $@
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47$(obj)/elfconfig.h: $(obj)/empty.o $(obj)/mk_elfconfig FORCE
48 $(call if_changed,elfconfig)
49
50targets += elfconfig.h