The following is a guide on how to build DS-Craft.
- DevkitPro toolchain for Nintendo DS
- Python 3
The makefile supports these targets:
build
(default): builds DS-Craftclean
: removes binaries and intermediate filesrun
: runs DS-Craft
So this means that running make
builds the game, make clean build
rebuilds,
etc.
To run using the makefile, you can use the run
target. However, you
need to supply the emulator using the EMULATOR
variable. Example:
make run EMULATOR=/home/moltony/melonDS
Please note that if you're on Windows, you should use Unix forward slashes
instead of Windows backslashes. (basically replace all \
with /
)