Fix release building (#1454)
`boot.3dsx` is downloaded from a static URL via `curl`. Fixes #1453
This commit is contained in:
parent
768e587b76
commit
95fd4e763b
5
Makefile
5
Makefile
@ -15,7 +15,7 @@ release: $(NAME)$(REVISION).zip
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
@$(foreach dir, $(SUBFOLDERS), $(MAKE) -C $(dir) clean &&) true
|
@$(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
|
# boot.3dsx comes from https://github.com/fincs/new-hbmenu/releases
|
||||||
$(NAME)$(REVISION).zip: boot.firm boot.3dsx
|
$(NAME)$(REVISION).zip: boot.firm boot.3dsx
|
||||||
@ -26,5 +26,8 @@ boot.firm: $(SUBFOLDERS)
|
|||||||
-A 0x18180000 -C XDMA XDMA NDMA XDMA
|
-A 0x18180000 -C XDMA XDMA NDMA XDMA
|
||||||
@echo built... $(notdir $@)
|
@echo built... $(notdir $@)
|
||||||
|
|
||||||
|
boot.3dsx:
|
||||||
|
@curl -sSL "https://github.com/fincs/new-hbmenu/releases/latest/download/boot.3dsx" -o "boot.3dsx"
|
||||||
|
|
||||||
$(SUBFOLDERS):
|
$(SUBFOLDERS):
|
||||||
@$(MAKE) -C $@ all
|
@$(MAKE) -C $@ all
|
||||||
|
Reference in New Issue
Block a user