forked from raing3/tempar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
33 lines (25 loc) · 627 Bytes
/
Copy pathmakefile
File metadata and controls
33 lines (25 loc) · 627 Bytes
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
export RELVER := 1.70.4
release: prep psp lite pack clean
release_pr: prep psppr litepr pack clean
clean:
rm -f src/*.elf
rm -f src/*.prx
rm -f src/objects/*.o
rm -f src/languages/*.h
rm -rf build/temp
prep:
bin2c "src/languages/english.bin" "src/languages/english.h" "language_english"
pack:
mkdir -p build/temp
cp -r src/resources/* build/temp
cp -r docs build/temp
mv src/*.prx build/temp/seplugins/TempAR
cd build/temp && zip -r ../tempar-$(RELVER).zip *
psp:
make -C src -f makefile_psp
lite:
make -C src -f makefile_lite
psppr:
make -C src -f makefile_psppr
litepr:
make -C src -f makefile_litepr