summaryrefslogtreecommitdiff
path: root/arch/riscv/Makefile.postlink
blob: 0e4cf8ad2f14b2a74e65d16a0c5c6dc696451d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# SPDX-License-Identifier: GPL-2.0
# ===========================================================================
# Post-link riscv pass
# ===========================================================================
#
# Check that vmlinux relocations look sane

PHONY := __archpost
__archpost:

-include include/config/auto.conf
include $(srctree)/scripts/Kbuild.include

quiet_cmd_relocs_check = CHKREL  $@
cmd_relocs_check = 							\
	$(CONFIG_SHELL) $(srctree)/arch/riscv/tools/relocs_check.sh "$(OBJDUMP)" "$(NM)" "$@"

# `@true` prevents complaint when there is nothing to be done

vmlinux vmlinux.unstripped: FORCE
	@true
ifdef CONFIG_RELOCATABLE
	$(call if_changed,relocs_check)
endif

clean:
	@true

PHONY += FORCE clean

FORCE:

.PHONY: $(PHONY)