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