Pass name variable along

This commit is contained in:
Aurora 2016-09-23 18:37:46 +02:00
parent 6ed8741006
commit d46beac22a
3 changed files with 2 additions and 3 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@ loader/build
injector/build injector/build
exceptions/arm9/build exceptions/arm9/build
exceptions/arm11/build exceptions/arm11/build
haxloader/build
*.bin *.bin
*.3dsx *.3dsx
*.smdh *.smdh

View File

@ -55,7 +55,7 @@ a9lh: $(dir_out)/arm9loaderhax.bin
.PHONY: haxloader .PHONY: haxloader
haxloader: a9lh haxloader: a9lh
@mkdir -p $(dir_out) @mkdir -p $(dir_out)
@$(MAKE) -C $(dir_haxloader) @$(MAKE) name=$(name) -C $(dir_haxloader)
.PHONY: clean .PHONY: clean
clean: clean:

View File

@ -11,8 +11,6 @@ AS := arm-none-eabi-as
LD := arm-none-eabi-ld LD := arm-none-eabi-ld
OC := arm-none-eabi-objcopy OC := arm-none-eabi-objcopy
name := Luma3DS
dir_source := source dir_source := source
dir_cakebrah := CakeBrah dir_cakebrah := CakeBrah
dir_cakehax := CakeHax dir_cakehax := CakeHax