diff --git a/buildapp/Makefile b/buildapp/Makefile index 129e96f19..6df413837 100644 --- a/buildapp/Makefile +++ b/buildapp/Makefile @@ -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 \ No newline at end of file diff --git a/buildapp/build_app_all.sh b/buildapp/build_app_all.sh index dca6655d1..012c17a0d 100755 --- a/buildapp/build_app_all.sh +++ b/buildapp/build_app_all.sh @@ -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." \ No newline at end of file +./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." \ No newline at end of file diff --git a/buildapp/make_print_description_then_exit.sh b/buildapp/make_print_description_then_exit.sh new file mode 100755 index 000000000..1deb5c29c --- /dev/null +++ b/buildapp/make_print_description_then_exit.sh @@ -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 \ No newline at end of file