1# $NetBSD: Makefile,v 1.3 2001/03/13 16:31:31 uch Exp $
2
3BUILD_ARCH	= ARM SH3 SH4 MIPS
4
5vc5: clean
6	TYPE=application sh gen_template.sh vc5 SH MIPS
7	TYPE=static_library sh gen_template.sh vc5 SH MIPS
8
9vc6: clean
10	TYPE=application sh gen_template.sh vc6 $(BUILD_ARCH)
11	TYPE=static_library sh gen_template.sh vc6 $(BUILD_ARCH)
12
13evc3: 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)
18evc4: 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
22clean:
23	rm -f application.tmpl static_library.tmpl property.* asm_build.*
24
25distclean:	clean
26