Add GDBStub to win32 makefile

This commit is contained in:
Jasmine Iwanek
2022-07-19 21:10:16 -04:00
parent 27cce453ee
commit 3eeb83278c

View File

@@ -31,6 +31,9 @@ ifeq ($(DEV_BUILD), y)
ifndef DEBUG
DEBUG := y
endif
ifndef GDBSTUB
GDBSTUB := n
endif
ifndef DEV_BRANCH
DEV_BRANCH := y
endif
@@ -92,6 +95,9 @@ else
ifndef DEBUG
DEBUG := n
endif
ifndef GDBSTUB
GDBSTUB := n
endif
ifndef DEV_BRANCH
DEV_BRANCH := n
endif
@@ -506,6 +512,10 @@ OPTS += -DUSE_OLIVETTI
DEVBROBJ += olivetti_eva.o
endif
ifeq ($(GDBSTUB), y)
OPTS += -DUSE_GDBSTUB
DEVBROBJ += gdbstub.o
endif
endif