summaryrefslogtreecommitdiffstats
path: root/tmk_core/common.mk
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2016-07-06 14:36:45 +0200
committerFred Sundvik <fsundvik@gmail.com>2016-07-06 15:06:53 +0200
commite5726b017a9de2922ea923818c6e215600f68a85 (patch)
tree2d1470d076017af6d089a00f4bb317abdb331346 /tmk_core/common.mk
parent4b45deb652045aac73e5fdd7412a73bcef19c0c8 (diff)
downloadqmk_firmware-e5726b017a9de2922ea923818c6e215600f68a85.tar.gz
qmk_firmware-e5726b017a9de2922ea923818c6e215600f68a85.tar.xz
Add setting of the master side to the makefile
Diffstat (limited to 'tmk_core/common.mk')
-rw-r--r--tmk_core/common.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk
index d71fba9bc..5bae0d762 100644
--- a/tmk_core/common.mk
+++ b/tmk_core/common.mk
@@ -97,6 +97,15 @@ ifeq ($(strip $(KEYMAP_SECTION_ENABLE)), yes)
endif
endif
+ifeq ($(MASTER),right)
+ OPT_DEFS += -DMASTER_IS_ON_RIGHT
+else
+ ifneq ($(MASTER),left)
+$(error MASTER does not have a valid value(left/right))
+ endif
+endif
+
+
# Version string
OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)