diff options
| -rw-r--r-- | arch/mips/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index a68d462a415f..f450066b6241 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
| @@ -709,3 +709,25 @@ archclean: | |||
| 709 | CLEAN_FILES += vmlinux.32 \ | 709 | CLEAN_FILES += vmlinux.32 \ |
| 710 | vmlinux.64 \ | 710 | vmlinux.64 \ |
| 711 | vmlinux.ecoff | 711 | vmlinux.ecoff |
| 712 | |||
| 713 | quiet_cmd_syscalls_n32 = CALL-N32 $< | ||
| 714 | cmd_syscalls_n32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=n32 | ||
| 715 | |||
| 716 | quiet_cmd_syscalls_o32 = CALL-O32 $< | ||
| 717 | cmd_syscalls_o32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=32 | ||
| 718 | |||
| 719 | PHONY += missing-syscalls-n32 missing-syscalls-o32 | ||
| 720 | |||
| 721 | missing-syscalls-n32: scripts/checksyscalls.sh FORCE | ||
| 722 | $(call cmd,syscalls_n32) | ||
| 723 | |||
| 724 | missing-syscalls-o32: scripts/checksyscalls.sh FORCE | ||
| 725 | $(call cmd,syscalls_o32) | ||
| 726 | |||
| 727 | archprepare: | ||
| 728 | ifdef CONFIG_MIPS32_N32 | ||
| 729 | $(Q)$(MAKE) $(build)=arch/mips missing-syscalls-n32 | ||
| 730 | endif | ||
| 731 | ifdef CONFIG_MIPS32_O32 | ||
| 732 | $(Q)$(MAKE) $(build)=arch/mips missing-syscalls-o32 | ||
| 733 | endif | ||
