-
Notifications
You must be signed in to change notification settings - Fork 51
/
Makefile
62 lines (52 loc) · 821 Bytes
/
Makefile
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
.PHONY: all
.PHONY: clean
all: windows ds gamecube 3ds linux psp PS4
.PHONY: windows
windows:
make -f Makefile.win
.PHONY: ds
ds:
make -f Makefile.ds
.PHONY: gamecube
gamecube:
make -f Makefile.gc
.PHONY: 3ds
3ds:
make -f Makefile.3d
.PHONY: linux
linux:
make -f Makefile.lin
.PHONY: osx
osx:
make -f Makefile.osx
.PHONY: psp
psp:
make -f Makefile.psp
PS4:
make -f Makefile.ps4
clean:
rm -f wbuild/*
rm -f dbuild/*
rm -f gbuild/*
rm -f 3build/*
rm -f lbuild/*
rm -f xbuild/*
rm -f cinoop.elf
rm -f cinoopstripped.elf
rm -f cinoop.nds
rm -f cinoop.dol
rm -f cinoop.3ds
rm -f cinoop.3dsx
rm -f cinoop.cia
rm -f cinoop.smdh
rm -f cinoop.exe
rm -f cinoop
rm -f PARAM.SFO
rm -f EBOOT.PBP
rm -f cinoop.bin
rmdir wbuild
rmdir dbuild
rmdir gbuild
rmdir 3build
rmdir lbuild
rmdir xbuild