From 718eaf93ca3f182d7721d2d7b5678bfce6504506 Mon Sep 17 00:00:00 2001 From: Jim Morris Date: Thu, 9 Oct 2014 12:57:24 -0700 Subject: [PATCH] add DISABLEMSD to options allowed on make command line --- build/common.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/common.mk b/build/common.mk index 860edf23..9d30f281 100755 --- a/build/common.mk +++ b/build/common.mk @@ -85,6 +85,10 @@ else CSRCS = $(CSRCS1) endif +ifeq "$(DISABLEMSD)" "1" +DEFINES += -DDISABLEMSD +endif + ASRCS = $(wildcard $(SRC)/*.S $(SRC)/*/*.S $(SRC)/*/*/*.S $(SRC)/*/*/*/*.S $(SRC)/*/*/*/*/*.S) ifneq "$(OS)" "Windows_NT" ASRCS += $(wildcard $(SRC)/*.s $(SRC)/*/*.s $(SRC)/*/*/*.s $(SRC)/*/*/*/*.s $(SRC)/*/*/*/*/*.s) -- 2.20.1