From 8e97914834fec38aa124dfa118e9849d1d414d68 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Sun, 11 Feb 2024 20:01:28 +0900 Subject: [PATCH] makefile script for the lulz --- buildapp/Makefile | 23 +++++++++++++++++++++++ buildapp/appimagetool-x86_64.AppImage | Bin 2 files changed, 23 insertions(+) create mode 100644 buildapp/Makefile mode change 100644 => 100755 buildapp/appimagetool-x86_64.AppImage diff --git a/buildapp/Makefile b/buildapp/Makefile new file mode 100644 index 000000000..129e96f19 --- /dev/null +++ b/buildapp/Makefile @@ -0,0 +1,23 @@ +assets: + ./make_assets_release.sh || true + +linux_x86: + ./build_app_linux_x86.sh + +linux_arm: + ./build_app_linux_arm.sh + +mac: + ./build_app_mac_arm.sh + +mac_arm: + ./build_app_mac_arm.sh + +mac_x86: + ./build_app_mac_x86.sh + +windows: + ./build_app_windows_x86.sh + +all: + ./build_app_all.sh diff --git a/buildapp/appimagetool-x86_64.AppImage b/buildapp/appimagetool-x86_64.AppImage old mode 100644 new mode 100755