2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-25 05:41:53 +00:00

Move scripts to scripts folder and remove unused docker image stuff

This commit is contained in:
Jan
2021-03-04 08:46:18 -08:00
parent ba699d36df
commit bedd44eb6b
9 changed files with 20 additions and 36 deletions

7
scripts/make-clean.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
# Go to repository root
cd "$(dirname "$0")/.." || exit 2
make -C build -j$(nproc) config=debug_x86 clean
make -C build -j$(nproc) config=release_x86 clean

6
scripts/make-debug.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Go to repository root
cd "$(dirname "$0")/.." || exit 2
make -C build -j$(nproc) config=debug_x86 all

6
scripts/make-release.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Go to repository root
cd "$(dirname "$0")/.." || exit 2
make -C build -j$(nproc) config=release_x86 all