Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitarchiveinclude
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
bin/minui-btntest-tg5040
bin/minui-btntest-rg35xxplus
bin/minui-keyboard-tg5040
bin/minui-keyboard-rg35xxplus
bin/minui-list-tg5040
bin/minui-list-rg35xxplus
bin/sdl2imgshow
Expand Down
11 changes: 2 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,21 @@ BUILD_DATE := "$(shell date -u +%FT%TZ)"
PAK_NAME := $(shell jq -r .label config.json)

PLATFORMS := tg5040 rg35xxplus
MINUI_LIST_VERSION := 0.3.1
MINUI_KEYBOARD_VERSION := 0.2.1
MINUI_LIST_VERSION := 0.4.0
MINUI_BTNTEST_VERSION := 0.2.0

clean:
rm -f bin/minui-btntest-* || true
rm -f bin/minui-keyboard-* || true
rm -f bin/minui-list-* || true
rm -f bin/screenshot-monitor || true
rm -f bin/sdl2imgshow || true
rm -f res/fonts/BPreplayBold.otf || true

build: $(foreach platform,$(PLATFORMS),bin/minui-keyboard-$(platform) bin/minui-list-$(platform) bin/minui-btntest-$(platform)) bin/screenshot-monitor bin/sdl2imgshow res/fonts/BPreplayBold.otf
build: $(foreach platform,$(PLATFORMS),bin/minui-list-$(platform) bin/minui-btntest-$(platform)) bin/sdl2imgshow res/fonts/BPreplayBold.otf

bin/minui-btntest-%:
curl -f -o bin/minui-btntest-$* -sSL https://github.com/josegonzalez/minui-btntest/releases/download/$(MINUI_BTNTEST_VERSION)/minui-btntest-$*
chmod +x bin/minui-btntest-$*

bin/minui-keyboard-%:
curl -f -o bin/minui-keyboard-$* -sSL https://github.com/josegonzalez/minui-keyboard/releases/download/$(MINUI_KEYBOARD_VERSION)/minui-keyboard-$*
chmod +x bin/minui-keyboard-$*

bin/minui-list-%:
curl -f -o bin/minui-list-$* -sSL https://github.com/josegonzalez/minui-list/releases/download/$(MINUI_LIST_VERSION)/minui-list-$*
chmod +x bin/minui-list-$*
Expand Down
4 changes: 0 additions & 4 deletions launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,6 @@ main() {
return 1
fi

if [ ! -f "$progdir/bin/minui-keyboard-$PLATFORM" ]; then
show_message "$progdir/bin/minui-keyboard-$PLATFORM not found" 2
return 1
fi
if [ ! -f "$progdir/bin/minui-list-$PLATFORM" ]; then
show_message "$progdir/bin/minui-list-$PLATFORM not found" 2
return 1
Expand Down
Loading