summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2015-02-05 13:08:35 -0800
committerMarcus Huderle <huderlem@gmail.com>2015-02-05 13:08:35 -0800
commit6206e93b14da49f352d53a87d27b3ed3d40281a4 (patch)
treea102872407c4d940c3c124f10fbdcd21770689c6
parenta9d8c666ff172604cd0c3703875e7333e51761bc (diff)
Use $(PYTHON) in Makefile. Ignore .bin files in .gitignore.
-rwxr-xr-x.gitignore4
-rwxr-xr-xMakefile2
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 10737a0..76f135a 100755
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/Makefile b/Makefile
index fc0c9e8..7e68105 100755
--- a/Makefile
+++ b/Makefile
@@ -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.