diff options
author | QMK Bot <hello@qmk.fm> | 2021-06-02 21:00:26 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-06-02 21:00:26 +0000 |
commit | b8711b9726757d153b92afae99a5856e7b85968b (patch) | |
tree | 71a9a810130b36215b71c7be15ffedce1336e697 /keyboards/massdrop/alt/keymaps/jdelkins/rules.mk | |
parent | 9544b4164044fab5e4fe2ce36123a0cd2cb7113d (diff) | |
parent | 35dbe8ba035c8eefc1051226aa8e3dd7cd63a912 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/massdrop/alt/keymaps/jdelkins/rules.mk')
-rw-r--r-- | keyboards/massdrop/alt/keymaps/jdelkins/rules.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/massdrop/alt/keymaps/jdelkins/rules.mk b/keyboards/massdrop/alt/keymaps/jdelkins/rules.mk new file mode 100644 index 0000000000..17d80b8ca2 --- /dev/null +++ b/keyboards/massdrop/alt/keymaps/jdelkins/rules.mk @@ -0,0 +1,17 @@ +ifeq ($(OS),Windows_NT) + PROGRAM_CMD = bin/mdloader_windows --first --download $(TARGET).hex --restart +else + UNAME_S := $(shell uname -s) + ifeq ($(UNAME_S),Darwin) + PROGRAM_CMD = bin/mdloader_mac --first --download $(TARGET).hex --restart + else + PROGRAM_CMD = sudo bin/mdloader_linux --first --download $(TARGET).hex --restart + endif +endif + +LEADER_ENABLE = yes +MOUSEKEY_ENABLE = no +CONSOLE_ENABLE = no +NKRO_ENABLE = no +TAP_DANCE_ENABLE = yes +AUTO_SHIFT_ENABLE = no |