Re-added the Dells

This commit is contained in:
amdk6
2020-10-25 17:51:26 +02:00
parent 5337d55d0c
commit 5a7a769696
4 changed files with 56 additions and 1 deletions

View File

@@ -117,6 +117,9 @@ ifeq ($(DEV_BUILD), y)
ifndef USE_VECT486VL
USE_VECT486VL := y
endif
ifndef USE_DELLS4
USE_DELLS4 := y
endif
else
ifndef DEBUG
DEBUG := n
@@ -208,6 +211,9 @@ else
ifndef USE_VECT486VL
USE_VECT486VL := n
endif
ifndef USE_DELLS4
USE_DELLS4 := n
endif
endif
# Defaults for several build options (possibly defined in a chained file.)
@@ -630,6 +636,10 @@ ifeq ($(USE_VECT486VL), y)
OPTS += -DUSE_VECT486VL
endif
ifeq ($(DELLS4), y)
OPTS += -DUSE_DELLS4
endif
endif