diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2018-12-30 11:07:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-30 11:07:40 -0500 |
commit | f7ce402d2adb70898205fb5411b00ea49a068841 (patch) | |
tree | a55f3599713299bb201c8a6a9374fcb09ba17034 | |
parent | 0ae5e9b3986dbbe64870dc1ad29a63b65b96200e (diff) | |
parent | 97e04cfa33588f7737791954e08d97501e80a22b (diff) |
Merge pull request #583 from melthelesbian/rgbds_environment_config
allow setting RGBASM/etc in environment vars
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -4,10 +4,11 @@ else SHA1 := sha1sum endif -RGBASM := rgbasm -RGBFIX := rgbfix -RGBGFX := rgbgfx -RGBLINK := rgblink +RGBDS ?= +RGBASM ?= $(RGBDS)rgbasm +RGBFIX ?= $(RGBDS)rgbfix +RGBGFX ?= $(RGBDS)rgbgfx +RGBLINK ?= $(RGBDS)rgblink roms := pokecrystal.gbc pokecrystal11.gbc |