aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>2007-05-29 11:38:07 -0400
committerRalf Baechle <ralf@linux-mips.org>2007-07-10 12:32:55 -0400
commite48ce6b8df5b51af3f38b20bb3d008dff69ff64e (patch)
treefb8e3a263f7c20aa7619aa49da3ae726ed2ad67c /arch/mips
parentd7eb079fc8e68899fd099ad0b5b8095193a8c025 (diff)
[MIPS] Simplify missing-syscalls for N32 and O32
Use standard missing-syscalls with EXTRA_CFLAGS instead of duplicating the command. And move the archprepare rule before the archclean rule. Suggested by Franck Bui-Huu. Also add "echo" to show the target ABI. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/Makefile32
1 files changed, 10 insertions, 22 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index f450066b6241..2b19605b7382 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -702,6 +702,16 @@ vmlinux.srec: $(vmlinux-32)
702CLEAN_FILES += vmlinux.ecoff \ 702CLEAN_FILES += vmlinux.ecoff \
703 vmlinux.srec 703 vmlinux.srec
704 704
705archprepare:
706ifdef CONFIG_MIPS32_N32
707 @echo ' Checking missing-syscalls for N32'
708 $(Q)$(MAKE) $(build)=. missing-syscalls EXTRA_CFLAGS="-mabi=n32"
709endif
710ifdef CONFIG_MIPS32_O32
711 @echo ' Checking missing-syscalls for O32'
712 $(Q)$(MAKE) $(build)=. missing-syscalls EXTRA_CFLAGS="-mabi=32"
713endif
714
705archclean: 715archclean:
706 @$(MAKE) $(clean)=arch/mips/boot 716 @$(MAKE) $(clean)=arch/mips/boot
707 @$(MAKE) $(clean)=arch/mips/lasat 717 @$(MAKE) $(clean)=arch/mips/lasat
@@ -709,25 +719,3 @@ archclean:
709CLEAN_FILES += vmlinux.32 \ 719CLEAN_FILES += vmlinux.32 \
710 vmlinux.64 \ 720 vmlinux.64 \
711 vmlinux.ecoff 721 vmlinux.ecoff
712
713quiet_cmd_syscalls_n32 = CALL-N32 $<
714 cmd_syscalls_n32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=n32
715
716quiet_cmd_syscalls_o32 = CALL-O32 $<
717 cmd_syscalls_o32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=32
718
719PHONY += missing-syscalls-n32 missing-syscalls-o32
720
721missing-syscalls-n32: scripts/checksyscalls.sh FORCE
722 $(call cmd,syscalls_n32)
723
724missing-syscalls-o32: scripts/checksyscalls.sh FORCE
725 $(call cmd,syscalls_o32)
726
727archprepare:
728ifdef CONFIG_MIPS32_N32
729 $(Q)$(MAKE) $(build)=arch/mips missing-syscalls-n32
730endif
731ifdef CONFIG_MIPS32_O32
732 $(Q)$(MAKE) $(build)=arch/mips missing-syscalls-o32
733endif