better makefile

This commit is contained in:
minjaesong
2024-06-28 12:58:15 +09:00
parent 86fbe65e01
commit 7582eae1ee
3 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
.DEFAULT_GOAL := what
what:
./make_print_description_then_exit.sh
assets:
./make_assets_release.sh || true
@@ -20,4 +25,4 @@ windows:
./build_app_windows_x86.sh
all:
./build_app_all.sh
./build_app_all.sh

View File

@@ -4,6 +4,6 @@
./build_app_mac_arm.sh
./build_app_mac_x86.sh
./build_app_windows_x86.sh
echo "IMPORTANT NOTE:"
echo "ARM executable cannot be created on AMD64 platform (seems to be a bug in the appimagetool. Use actual ARM Linux to build ARM Linux executable."
./build_app_linux_arm.sh
#echo "IMPORTANT NOTE:"
#echo "ARM executable cannot be created on AMD64 platform (seems to be a bug in the appimagetool. Use actual ARM Linux to build ARM Linux executable."

View File

@@ -0,0 +1,4 @@
#!/bin/bash
echo "run 'make assets' to create Assets directory for the building first, then"
echo "run 'make all' to build 5 executables for the release."
exit 0