1 # $NetBSD: Makefile,v 1.4 2008/02/26 21:46:38 rafal Exp $ 2 3 BUILD_ARCH = ARM SH3 SH4 MIPS 4 5 vc5: clean 6 TYPE=application sh gen_template.sh vc5 SH MIPS 7 TYPE=static_library sh gen_template.sh vc5 SH MIPS 8 9 vc6: clean 10 TYPE=application sh gen_template.sh vc6 $(BUILD_ARCH) 11 TYPE=static_library sh gen_template.sh vc6 $(BUILD_ARCH) 12 13 evc3: clean 14 TYPE=application sh gen_template.sh evc3 $(BUILD_ARCH) 15 TYPE=static_library sh gen_template.sh evc3 $(BUILD_ARCH) 16 17 # No MIPS support for eVC++ 4 yet (only supports MIPS II, MIPS IV or MIPS16) 18 evc4: clean 19 TYPE=application sh gen_template.sh evc4 ARMV4 SH3 SH4 20 TYPE=static_library sh gen_template.sh evc4 ARMV4 SH3 SH4 21 22 clean: 23 rm -f application.tmpl static_library.tmpl property.* asm_build.* 24 25 distclean: clean 26