mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 01:21:34 +11:00
Don't fail making the directory if it already exists
This commit is contained in:
parent
0d17da1e79
commit
e28e567535
2
Makefile
2
Makefile
|
@ -37,7 +37,7 @@ cargo-debug-%: $(RUSTFILES) out/crt0.o
|
||||||
@rustup run nightly cargo xbuild --target=gba.json --example=$${OUTNAME}
|
@rustup run nightly cargo xbuild --target=gba.json --example=$${OUTNAME}
|
||||||
|
|
||||||
out/crt0.o: crt0.s interrupt_simple.s
|
out/crt0.o: crt0.s interrupt_simple.s
|
||||||
@mkdir $(dir $@)
|
@mkdir -p $(dir $@)
|
||||||
@$(CC) $(ARCH) -o out/crt0.o crt0.s
|
@$(CC) $(ARCH) -o out/crt0.o crt0.s
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
|
|
Loading…
Reference in a new issue