diff options
-rwxr-xr-x | .gitignore | 4 | ||||
-rwxr-xr-x | Makefile | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -3,6 +3,8 @@ # compiled object file
*.o
+# no .bin dumps from baserom.gbc +*.bin # no binaries
*.exe
@@ -24,4 +26,4 @@ # for vim configuration
# url: http://www.vim.org/scripts/script.php?script_id=441
-.lvimrc
\ No newline at end of file +.lvimrc @@ -19,7 +19,7 @@ main.o: main.asm bin # Create .bin dumps from baserom.gbc by scanning main.asm for INCBIN.
bin:
- PYTHON util/generate_bin_dumps.py main.asm
+ $(PYTHON) util/generate_bin_dumps.py main.asm
# The compare target is a shortcut to check that the build matches the original roms exactly.
# This is for contributors to make sure a change didn't affect the contents of the rom.
|