Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 738 Bytes

BUILD.md

File metadata and controls

32 lines (20 loc) · 738 Bytes

Building DS-Craft

The following is a guide on how to build DS-Craft.

Dependencies

  • DevkitPro toolchain for Nintendo DS
  • Python 3

Building

The makefile supports these targets:

  • build (default): builds DS-Craft
  • clean: removes binaries and intermediate files
  • run: runs DS-Craft

So this means that running make builds the game, make clean build rebuilds, etc.

Running

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 /)