forked from rh-hideout/pokeemerald-expansion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement agbcc's libc and allow a custom cxx compiler to be passed t…
…o build_tools.sh
- Loading branch information
Showing
4 changed files
with
13 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/sh | ||
make -C tools/gbagfx | ||
make -C tools/scaninc | ||
make -C tools/preproc | ||
make -C tools/bin2c | ||
make -C tools/rsfont | ||
make -C tools/aif2pcm | ||
make -C tools/ramscrgen | ||
make -C tools/gbagfx CXX=${1:=g++} | ||
make -C tools/scaninc CXX=${1:=g++} | ||
make -C tools/preproc CXX=${1:=g++} | ||
make -C tools/bin2c CXX=${1:=g++} | ||
make -C tools/rsfont CXX=${1:=g++} | ||
make -C tools/aif2pcm CXX=${1:=g++} | ||
make -C tools/ramscrgen CXX=${1:=g++} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.