Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Josh Poimboeuf | c0dd671686 | 2016-02-28 22:22:34 -0600 | [diff] [blame] | 2 | OBJECT_FILES_NON_STANDARD := y |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | hostprogs-y := modpost mk_elfconfig |
| 5 | always := $(hostprogs-y) empty.o |
| 6 | |
| 7 | modpost-objs := modpost.o file2alias.o sumversion.o |
| 8 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 9 | devicetable-offsets-file := devicetable-offsets.h |
| 10 | |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 11 | $(obj)/$(devicetable-offsets-file): $(obj)/devicetable-offsets.s FORCE |
| 12 | $(call filechk,offsets,__DEVICETABLE_OFFSETS_H__) |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 13 | |
Jan Beulich | bd70134 | 2013-05-29 13:18:56 +0100 | [diff] [blame] | 14 | targets += $(devicetable-offsets-file) devicetable-offsets.s |
Andreas Schwab | 22fc427 | 2013-05-04 16:32:53 +0200 | [diff] [blame] | 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | # dependencies on generated files need to be listed explicitly |
| 17 | |
| 18 | $(obj)/modpost.o $(obj)/file2alias.o $(obj)/sumversion.o: $(obj)/elfconfig.h |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 19 | $(obj)/file2alias.o: $(obj)/$(devicetable-offsets-file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | quiet_cmd_elfconfig = MKELF $@ |
Alan Jenkins | 9e1b9b8 | 2009-11-07 21:03:54 +0000 | [diff] [blame] | 22 | cmd_elfconfig = $(obj)/mk_elfconfig < $< > $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | $(obj)/elfconfig.h: $(obj)/empty.o $(obj)/mk_elfconfig FORCE |
| 25 | $(call if_changed,elfconfig) |
| 26 | |
| 27 | targets += elfconfig.h |