blob: 702dcc2e9d8f8cad17b010fc12b143955649746b (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# $NetBSD: hpcboot.config,v 1.13 2011/09/23 16:00:15 nonaka Exp $
# config file/script to generate project file (.dsp/.vcp) for hpcboot
TYPE=application
NAME='hpcboot'
# machine independent sources.
SRCFILE_LIST='
res/hpcmenu.rc
machine_config.cpp
framebuffer.cpp
hpcboot.cpp
hpcmenu.cpp
arch.cpp
boot.cpp
console.cpp
file.cpp
file_fat.cpp
file_http.cpp
file_manager.cpp
file_ufs.cpp
load.cpp
load_elf.cpp
load_coff.cpp
memory.cpp
menu\menu.cpp
menu\window.cpp
menu\tabwindow.cpp
menu\rootwindow.cpp
menu\platform.cpp
menu\platid.c
menu\platid_mask.c
menu\platid_name.c
'
# machine dependent sources.
SRCFILE_LIST_ARM='
arm\arm_arch.cpp
arm\arm_sa1100.cpp
arm\arm_pxa2x0.cpp
arm\arm_console.cpp
arm\arm_boot.cpp
arm\arm_mmu.cpp
arm\arm.asm
arm\arm_sa1100_asm.asm
arm\arm_pxa2x0_asm.asm
'
SRCFILE_LIST_SH3='
sh3\sh_arch.cpp
sh3\sh_console.cpp
sh3\sh_boot.cpp
sh3\sh_mmu.cpp
sh3\dev\sh_dev.cpp
sh3\dev\sh3_dev.cpp
sh3\dev\sh4_dev.cpp
'
SRCFILE_LIST_MIPS='
mips\mips_arch.cpp
mips\mips_console.cpp
mips\mips_boot.cpp
mips\mips_vr41.cpp
mips\mips_tx39.cpp
'
CPPDEF_LIST='
_STANDALONE
__STDC__
__COMPILER_INT64__=__int64
__COMPILER_UINT64__="unsigned#__int64"
LIBSA_RENAME_PRINTF
__VA_LIST_DECLARED
__builtin_va_list="char#*"
'
INCDIR_LIST='
.
res
../include
../../../..
../../../../../common/dist/zlib
'
LIBDEP_LIST='
libsa
libz
'
LIBRARY_LIST='
libsa
libz
winsock
'
|