mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-03 11:11:14 +00:00
Remove stage3 refs from Makefile
This commit is contained in:
parent
92ef68e84a
commit
b85567dff3
1 changed files with 2 additions and 9 deletions
|
@ -9,7 +9,6 @@ include $(DEVKITARM)/base_tools
|
||||||
dir_source := src
|
dir_source := src
|
||||||
dir_out := out
|
dir_out := out
|
||||||
dir_exosphere := ../exosphere
|
dir_exosphere := ../exosphere
|
||||||
dir_main := fusee-tertiary
|
|
||||||
dir_loader := fusee-secondary
|
dir_loader := fusee-secondary
|
||||||
dir_stage1 := fusee-primary
|
dir_stage1 := fusee-primary
|
||||||
|
|
||||||
|
@ -37,25 +36,19 @@ all: $(dir_out)
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
@$(MAKE) -C $(dir_exosphere) clean
|
@$(MAKE) -C $(dir_exosphere) clean
|
||||||
@$(MAKE) -C $(dir_main) clean
|
|
||||||
@$(MAKE) -C $(dir_loader) clean
|
@$(MAKE) -C $(dir_loader) clean
|
||||||
@$(MAKE) -C $(dir_stage1) clean
|
@$(MAKE) -C $(dir_stage1) clean
|
||||||
@rm -rf $(dir_out)
|
@rm -rf $(dir_out)
|
||||||
|
|
||||||
.PHONY: $(dir_exosphere) $(dir_loader) $(dir_main) $(dir_stage1)
|
.PHONY: $(dir_exosphere) $(dir_loader) $(dir_stage1)
|
||||||
|
|
||||||
$(dir_out): $(dir_main) $(dir_loader) $(dir_stage1)
|
$(dir_out): $(dir_loader) $(dir_stage1)
|
||||||
@mkdir -p "$(dir_out)"
|
@mkdir -p "$(dir_out)"
|
||||||
@$(MAKE) -C $(dir_exosphere)
|
@$(MAKE) -C $(dir_exosphere)
|
||||||
|
|
||||||
$(dir_exosphere)/out/exosphere.bin: $(dir_exosphere)
|
$(dir_exosphere)/out/exosphere.bin: $(dir_exosphere)
|
||||||
@$(MAKE) -C $<
|
@$(MAKE) -C $<
|
||||||
|
|
||||||
$(dir_main):
|
|
||||||
@mkdir -p "$(dir_out)"
|
|
||||||
@$(MAKE) -C $(dir_main)
|
|
||||||
@cp "$(dir_main)/out/$(dir_main).bin" "out/$(dir_main).bin"
|
|
||||||
|
|
||||||
$(dir_loader):
|
$(dir_loader):
|
||||||
@mkdir -p "$(dir_out)"
|
@mkdir -p "$(dir_out)"
|
||||||
@$(MAKE) -C $(dir_loader)
|
@$(MAKE) -C $(dir_loader)
|
||||||
|
|
Loading…
Reference in a new issue