shithub: pokecrystal

Download patch

ref: 9f823041860922b8ef4224416e4bcdd38a0b9641
parent: 4259e7051e2cc621267fc62d6ea11620ab995122
parent: cae3af3e3a3ae66201d7c30185f76ade69067308
author: Rangi <35663410+Rangi42@users.noreply.github.com>
date: Mon Dec 31 13:26:33 EST 2018

Merge pull request #587 from Rangi42/master

Remove dependency on 'extras' submodule

git/query: bad hash 2ae1ae2f19c842da965cd3db1b0da8bf108ac235
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,0 @@
-[submodule "extras"]
-	path = extras
-	url = git://github.com/pret/pokemon-reverse-engineering-tools.git
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,3 @@
-ifeq (,$(shell which sha1sum))
-SHA1 := shasum
-else
-SHA1 := sha1sum
-endif
-
-RGBDS ?= 
-RGBASM ?= $(RGBDS)rgbasm
-RGBFIX ?= $(RGBDS)rgbfix
-RGBGFX ?= $(RGBDS)rgbgfx
-RGBLINK ?= $(RGBDS)rgblink
-
 roms := pokecrystal.gbc pokecrystal11.gbc
 
 crystal_obj := \
@@ -31,10 +19,25 @@
 crystal11_obj := $(crystal_obj:.o=11.o)
 
 
+### Build tools
+
+ifeq (,$(shell which sha1sum))
+SHA1 := shasum
+else
+SHA1 := sha1sum
+endif
+
+RGBDS ?=
+RGBASM  ?= $(RGBDS)rgbasm
+RGBFIX  ?= $(RGBDS)rgbfix
+RGBGFX  ?= $(RGBDS)rgbgfx
+RGBLINK ?= $(RGBDS)rgblink
+
+
 ### Build targets
 
 .SUFFIXES:
-.PHONY: all crystal crystal11 clean compare tools tidy
+.PHONY: all crystal crystal11 clean tidy compare tools
 .SECONDEXPANSION:
 .PRECIOUS:
 .SECONDARY: