Paul Burton | 703ec9d | 2017-06-19 11:53:47 -0700 | [diff] [blame] | 1 | # |
2 | # Copyright (c) 2017 Imagination Technologies Ltd. | ||||
3 | # | ||||
4 | # SPDX-License-Identifier: GPL-2.0+ | ||||
5 | # | ||||
6 | |||||
7 | PHONY := __archpost | ||||
8 | __archpost: | ||||
9 | |||||
10 | -include include/config/auto.conf | ||||
11 | include scripts/Kbuild.include | ||||
12 | |||||
13 | CMD_RELOCS = tools/mips-relocs | ||||
14 | quiet_cmd_relocs = RELOCS $@ | ||||
15 | cmd_relocs = $(CMD_RELOCS) $@ | ||||
16 | |||||
17 | u-boot: FORCE | ||||
18 | @true | ||||
19 | $(call if_changed,relocs) | ||||
20 | |||||
21 | .PHONY: FORCE | ||||
22 | |||||
23 | FORCE: |