From 95fd4e763b09ac14fb48b898e49220ba6d002c55 Mon Sep 17 00:00:00 2001 From: Death Mask Salesman Date: Sun, 12 Jul 2020 20:39:03 +0200 Subject: [PATCH] Fix release building (#1454) `boot.3dsx` is downloaded from a static URL via `curl`. Fixes #1453 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 760f2e7..72cca2e 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ release: $(NAME)$(REVISION).zip clean: @$(foreach dir, $(SUBFOLDERS), $(MAKE) -C $(dir) clean &&) true - @rm -rf *.firm *.zip + @rm -rf *.firm *.zip *.3dsx # boot.3dsx comes from https://github.com/fincs/new-hbmenu/releases $(NAME)$(REVISION).zip: boot.firm boot.3dsx @@ -26,5 +26,8 @@ boot.firm: $(SUBFOLDERS) -A 0x18180000 -C XDMA XDMA NDMA XDMA @echo built... $(notdir $@) +boot.3dsx: + @curl -sSL "https://github.com/fincs/new-hbmenu/releases/latest/download/boot.3dsx" -o "boot.3dsx" + $(SUBFOLDERS): @$(MAKE) -C $@ all