mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
Add justfile command for updating the linker script
This commit is contained in:
parent
fb8bcbfc0d
commit
b4d8f23bfb
4
justfile
4
justfile
|
@ -50,6 +50,10 @@ build-book:
|
|||
update-lockfiles:
|
||||
bash .github/scripts/update-lockfiles.sh
|
||||
|
||||
update-linker-scripts:
|
||||
find -type f -name gba.ld | grep -v ./agb/gba.ld | xargs -n1 cp -v -- agb/gba.ld
|
||||
find -type f -name gba_mb.ld | grep -v ./agb/gba_mb.ld | xargs -n1 cp -v -- agb/gba_mb.ld
|
||||
|
||||
_build-rom folder name:
|
||||
#!/usr/bin/env bash
|
||||
set -euxo pipefail
|
||||
|
|
Loading…
Reference in a new issue