aboutsummaryrefslogtreecommitdiff
path: root/distrib.sh
blob: d2a486f786a61b23295aac3d321cbe5c21e89b1d (plain) (blame)
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
#!/bin/bash

mkdir -p distrib

make clean
make -j6 config=release_gnu64
zip distrib/gnu64.zip mallocbullet pack

make emscripten
cd ems/out
mv mallocbullet.html index.html
zip ../../distrib/emscripten.zip index.html mallocbullet.js mallocbullet.wasm
cd ../../

make clean
make -j6 config=release_gnu32
zip distrib/gnu32.zip mallocbullet pack

make clean
make -j6 config=release_win32
zip distrib/win32.zip mallocbullet.exe pack SDL2.dll

make clean
make -j6 config=release_win64
zip distrib/win64.zip mallocbullet.exe pack SDL2.dll