summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2019-05-12 16:45:41 +0200
committermid-kid <esteve.varela@gmail.com>2019-05-25 17:59:50 +0200
commit649c8d38da25569a7789128a0da5da72bc280d1a (patch)
treecb4233797bd9284ab67d29309e360b7c3cff6924 /Makefile
parent13cfe356d678c69aa5a5e19409408f25a38352cf (diff)
Get rid of _CRYSTAL
Having this here is completely redundant and useless, and doesn't even work since it should use `if DEF(_CRYSTAL)` instead.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index bbc1060c5..9bd7e17a7 100644
--- a/Makefile
+++ b/Makefile
@@ -65,9 +65,9 @@ tools:
$(MAKE) -C tools/
-$(crystal_obj): RGBASMFLAGS = -D _CRYSTAL
-$(crystal11_obj): RGBASMFLAGS = -D _CRYSTAL -D _CRYSTAL11
-$(crystal_au_obj): RGBASMFLAGS = -D _CRYSTAL -D _CRYSTAL11 -D _CRYSTAL_AU
+$(crystal_obj): RGBASMFLAGS =
+$(crystal11_obj): RGBASMFLAGS = -D _CRYSTAL11
+$(crystal_au_obj): RGBASMFLAGS = -D _CRYSTAL11 -D _CRYSTAL_AU
# The dep rules have to be explicit or else missing files won't be reported.
# As a side effect, they're evaluated immediately instead of when the rule is invoked.