diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-02-05 13:08:35 -0800 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-02-05 13:08:35 -0800 |
commit | 6206e93b14da49f352d53a87d27b3ed3d40281a4 (patch) | |
tree | a102872407c4d940c3c124f10fbdcd21770689c6 | |
parent | a9d8c666ff172604cd0c3703875e7333e51761bc (diff) |
Use $(PYTHON) in Makefile. Ignore .bin files in .gitignore.
-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.
|