-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sh
executable file
·31 lines (24 loc) · 897 Bytes
/
build.sh
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
#!/bin/bash
export NAME=BR4096
rm -rf release
mkdir -p release
make clean ; make intro.laturi SCR_W=1920 SCR_H=1080
cp intro.laturi release/${NAME}_1920_1080_compo.command
make clean ; make intro.laturi SCR_W=1280 SCR_H=720
cp intro.laturi release/${NAME}_1280_720_compo.command
make clean ; make intro.laturi SCR_W=1280 SCR_H=800
cp intro.laturi release/${NAME}_1280_800_compo.command
make clean ; make intro.compat SCR_W=1920 SCR_H=1080
cp intro.compat release/${NAME}_1920_1080_compatibility
make clean ; make intro.compat SCR_W=1280 SCR_H=720
cp intro.compat release/${NAME}_1280_720_compatibility
make clean ; make intro.compat SCR_W=1280 SCR_H=800
cp intro.compat release/${NAME}_1280_800_compatibility
make clean
cp screenshot.jpg release
cp screenshot_small.png release
cp infofile.txt release
rm -rf ${NAME} ${NAME}.zip
mv release ${NAME}
zip -r ${NAME}.zip ${NAME}
rm -rf ${NAME}