forked from FIX94/Nintendont
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.bat
60 lines (51 loc) · 827 Bytes
/
Build.bat
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
@echo off
cd multidol
echo.
echo Building Multi-DOL Loader
echo.
make windows=1 clean
make windows=1
cd ..\kernel\asm
echo.
echo Building asm files
echo.
make windows=1 clean
make windows=1
cd ..\..\resetstub
echo.
echo Building Reset Stub
echo.
make clean
make
cd ..\fatfs
echo.
echo Building FatFS libraries
echo.
make -f Makefile.arm clean
make -f Makefile.arm
make -f Makefile.ppc clean
make -f Makefile.ppc
cd ..\codehandler
echo.
echo Building Nintendont Codehandler
echo.
call build.bat
cd ..\kernel
echo.
echo Building Nintendont Kernel
echo.
make windows=1 clean
make windows=1
cd ..\loader\source\ppc
echo.
echo Building Nintendont HID
echo.
call build.bat
cd ..\..\..\loader
echo.
echo Building Nintendont Loader
echo.
make clean
make
echo.
pause