sysfs: remove DEBUG defines
[linux/fpc-iii.git] / arch / mips / Makefile.postlink
blob4eea4188cb204a2b789ef0bdb4d8ce11d4d201f4
1 # SPDX-License-Identifier: GPL-2.0
2 # ===========================================================================
3 # Post-link MIPS pass
4 # ===========================================================================
6 # 1. Insert relocations into vmlinux
8 PHONY := __archpost
9 __archpost:
11 -include include/config/auto.conf
12 include scripts/Kbuild.include
14 CMD_RELOCS = arch/mips/boot/tools/relocs
15 quiet_cmd_relocs = RELOCS $@
16       cmd_relocs = $(CMD_RELOCS) $@
18 # `@true` prevents complaint when there is nothing to be done
20 vmlinux: FORCE
21         @true
22 ifeq ($(CONFIG_RELOCATABLE),y)
23         $(call if_changed,relocs)
24 endif
26 %.ko: FORCE
27         @true
29 clean:
30         @true
32 PHONY += FORCE clean
34 FORCE:
36 .PHONY: $(PHONY)