mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
* [CI] Fix 3DS try 1
* [CI] Fix 3DS try 2
* [CI] Fix 3DS try 3
* [CI] Fix 3DS try 4
* [CI] Fix 3DS try 5
* [CI] Fix 3DS try 6
* [CI] Fix 3DS try 7
* [CI] Fix 3DS try 8
* [CI] Fix 3DS try 9
* [CI] Fix 3DS try 10
* [CI] Fix 3DS try 11
* [CI] Fix 3DS try 12
* [CI] Fix 3DS try 13
* [CI] Fix 3DS try 14
* [CI] Fix 3DS try 15
* [CI] Fix 3DS try 16
* [CI] Fix 3DS try 17
* [CI] Fix 3DS try 18
* [CI] Fix 3DS try 19
* [CI] Make other simulators than 3DS working
* [CI] Fix 3DS without breaking others simulators try 1
* Apply suggestions from code review
* Improve SDL assert
* Fix SDL assert
* Fix SDL assert 2
* [CI] Enable iOS, macOS and 3DS tests by default
* [CI] Change epsilon-sdk tap url
* Revert "[CI] Change epsilon-sdk tap url"
This reverts commit 9516607aba.
24 lines
998 B
Makefile
24 lines
998 B
Makefile
|
|
%.smdh: ion/src/simulator/3ds/assets/logo.png
|
|
$(Q) echo "SMDH $(notdir $@)"
|
|
$(Q) smdhtool --create "Upsilon" "A Numworks in your 3DS!" "Numworks" $< $@
|
|
|
|
$(BUILD_DIR)/%.3dsx: $(BUILD_DIR)/%.elf $(BUILD_DIR)/%.smdh
|
|
$(Q) echo "3DSX $(notdir $@)"
|
|
$(Q) 3dsxtool $< $@ --smdh=$(word 2,$^)
|
|
|
|
cia_version_tuple := $(subst ., ,$(OMEGA_VERSION))
|
|
|
|
cia_version_major := $(word 1,$(cia_version_tuple))
|
|
cia_version_minor := $(word 2,$(cia_version_tuple))
|
|
cia_version_micro := $(word 3,$(cia_version_tuple))
|
|
|
|
|
|
$(BUILD_DIR)/%.cxi: $(BUILD_DIR)/%.elf ion/src/simulator/3ds/assets/app.rsf ion/src/simulator/3ds/assets/banner.bnr ion/src/simulator/3ds/assets/icon.icn
|
|
$(Q) echo "CXI $(notdir $@)"
|
|
$(Q) makerom -o $@ -rsf ion/src/simulator/3ds/assets/app.rsf -target t -elf $< -icon ion/src/simulator/3ds/assets/icon.icn -banner ion/src/simulator/3ds/assets/banner.bnr -desc app:4
|
|
|
|
$(BUILD_DIR)/%.cia: $(BUILD_DIR)/%.cxi
|
|
$(Q) echo "CIA $(notdir $@)"
|
|
$(Q) makerom -f cia -o $@ -target t -i $<:0:0
|