blob: 22001bf6d7f993c878edfc766bbb84c92eb85fa8 (
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
26
|
#!/bin/bash
mkdir -p distrib
rm distrib/*
make clean
make 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 config=release_gnu32
zip distrib/gnu32.zip mallocbullet pack
make clean
make config=release_win32
zip distrib/win32.zip mallocbullet.exe pack SDL2.dll
make clean
make config=release_win64
zip distrib/win64.zip mallocbullet.exe pack SDL2.dll
|