diff --git a/scripts/make-clean.sh b/scripts/make-clean.sh index 040538a1..67e54365 100755 --- a/scripts/make-clean.sh +++ b/scripts/make-clean.sh @@ -4,4 +4,6 @@ cd "$(dirname "$0")/.." || exit 2 make -C build -j$(nproc) config=debug_x86 clean -make -C build -j$(nproc) config=release_x86 clean \ No newline at end of file +make -C build -j$(nproc) config=release_x86 clean +make -C build -j$(nproc) config=debug_x64 clean +make -C build -j$(nproc) config=release_x64 clean diff --git a/scripts/make-debug-x64.sh b/scripts/make-debug-x64.sh new file mode 100755 index 00000000..d0cfe098 --- /dev/null +++ b/scripts/make-debug-x64.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# Go to repository root +cd "$(dirname "$0")/.." || exit 2 + +make -C build -j$(nproc) config=debug_x64 all diff --git a/scripts/make-debug.sh b/scripts/make-debug.sh index 39c6944c..866d89b8 100755 --- a/scripts/make-debug.sh +++ b/scripts/make-debug.sh @@ -3,4 +3,4 @@ # Go to repository root cd "$(dirname "$0")/.." || exit 2 -make -C build -j$(nproc) config=debug_x86 all \ No newline at end of file +make -C build -j$(nproc) config=debug_x86 all diff --git a/scripts/make-release-x64.sh b/scripts/make-release-x64.sh new file mode 100755 index 00000000..46e8d4c3 --- /dev/null +++ b/scripts/make-release-x64.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Go to repository root +cd "$(dirname "$0")/.." || exit 2 + +echo "Start building with $(nproc) threads" +make -C build -j$(nproc) config=release_x64 all diff --git a/scripts/make-release.sh b/scripts/make-release.sh index 16f19c47..0f78879c 100755 --- a/scripts/make-release.sh +++ b/scripts/make-release.sh @@ -4,4 +4,4 @@ cd "$(dirname "$0")/.." || exit 2 echo "Start building with $(nproc) threads" -make -C build -j$(nproc) config=release_x86 all \ No newline at end of file +make -C build -j$(nproc) config=release_x86 all