cfg80211: Fix array-bounds warning in fragment copy
[linux/fpc-iii.git] / arch / mips / Makefile.postlink
blob4b7f5a648c7986355a81d641fa39b3895d0197b5
1 # ===========================================================================
2 # Post-link MIPS pass
3 # ===========================================================================
5 # 1. Insert relocations into vmlinux
7 PHONY := __archpost
8 __archpost:
10 -include include/config/auto.conf
11 include scripts/Kbuild.include
13 CMD_RELOCS = arch/mips/boot/tools/relocs
14 quiet_cmd_relocs = RELOCS $@
15       cmd_relocs = $(CMD_RELOCS) $@
17 # `@true` prevents complaint when there is nothing to be done
19 vmlinux: FORCE
20         @true
21 ifeq ($(CONFIG_RELOCATABLE),y)
22         $(call if_changed,relocs)
23 endif
25 %.ko: FORCE
26         @true
28 clean:
29         @true
31 PHONY += FORCE clean
33 FORCE:
35 .PHONY: $(PHONY)