Scripts and tools to automate saUCE cooking.
- First clone the repo
git clone https://github.com/wn2000/sauce_factory cd sauce_factory - Set ROM and core directories by setting the following env variable (assuming Bash):
export ROMDIR=/my/rom/directory export COREDIR=/my/core/directory - Build
-
To build a single sauce, type
make out/Sauce_Name.ucee.g.
make out/AddOn_Air_Rescue.uceThis would generates
AddOn_Air_Rescue.ucein theoutfolder.Note: Currently this does not work if the recipe folder contains files with space in their names.
-
Alternatively, you can use
./build_uce.sh recipes/SORR out/SORR.uceThis approach works for all recipes.
-