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