diff options
author | quou <quou@disroot.org> | 2023-05-07 20:40:56 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2023-05-07 20:40:56 +1000 |
commit | f3ee0b0b2ddcf4484cd61aa2b33e49d9cc35779a (patch) | |
tree | c5a58cc00741e82de16e66e7e12a380a3f16a841 /distrib.sh | |
parent | 97e79598aa3fbbf7e7b69894964ccb232dfc0347 (diff) |
Work on random things.
Diffstat (limited to 'distrib.sh')
-rwxr-xr-x | distrib.sh | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,9 +1,10 @@ #!/bin/bash mkdir -p distrib +rm distrib/* make clean -make -j6 config=release_gnu64 +make config=release_gnu64 zip distrib/gnu64.zip mallocbullet pack make emscripten @@ -13,13 +14,13 @@ zip ../../distrib/emscripten.zip index.html mallocbullet.js mallocbullet.wasm cd ../../ make clean -make -j6 config=release_gnu32 +make config=release_gnu32 zip distrib/gnu32.zip mallocbullet pack make clean -make -j6 config=release_win32 +make config=release_win32 zip distrib/win32.zip mallocbullet.exe pack SDL2.dll make clean -make -j6 config=release_win64 +make config=release_win64 zip distrib/win64.zip mallocbullet.exe pack SDL2.dll |