From 23bc283e45e128a7f442f2b037fbd8b082495ce8 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 12 Jul 2020 19:38:42 +0200 Subject: [PATCH] Added the HEDAKA option to the makefile. --- src/win/Makefile.mingw | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/win/Makefile.mingw b/src/win/Makefile.mingw index 8aa028338..2137033f3 100644 --- a/src/win/Makefile.mingw +++ b/src/win/Makefile.mingw @@ -45,6 +45,9 @@ ifeq ($(DEV_BUILD), y) ifndef CYRIX_6X86 CYRIX_6X86 := y endif + ifndef HEADAKA + HEDAKA := y + endif ifndef LASERXT LASERXT := y endif @@ -112,6 +115,9 @@ else ifndef CYRIX_6X86 CYRIX_6X86 := n endif + ifndef HEDAKA + HEDAKA := n + endif ifndef LASERXT LASERXT := n endif @@ -483,6 +489,10 @@ ifeq ($(CYRIX_6X86), y) OPTS += -DUSE_CYRIX_6X86 endif +ifeq ($(HEDAKA), y) +OPTS += -DUSE_HEDAKA +endif + ifeq ($(LASERXT), y) OPTS += -DUSE_LASERXT DEVBROBJ += m_xt_laserxt.o