-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.mk
36 lines (31 loc) · 1.31 KB
/
rules.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright (c) 2018 Tim Perkins
# Use this Makefile to enable debug. You will also need `hid_listen`, a little
# utility by PJRC for Teensy 2.0. It dumps debug going over USB HID to a
# terminal. Remember to run it with permissions! See here for details:
# https://www.pjrc.com/teensy/hid_listen.html
# Note that you might need to use a "magic command" to enable debug. By default
# it is `Ctrl + Alt + D` and then `hid_listen` will print "debug: on". For more
# info, see here: https://docs.qmk.fm/#/faq_debug
# BOOTMAGIC_ENABLE = no
# MOUSEKEY_ENABLE = no
# EXTRAKEY_ENABLE = yes
# CONSOLE_ENABLE = no
# COMMAND_ENABLE = no
# NKRO_ENABLE = no
# UNICODE_ENABLE = no
$(info )
$(info ============================================================)
$(info TPRK77 ERGODOX EZ CONFIGURATION)
$(info ============================================================)
$(info BOOTMAGIC_ENABLE: ... $(BOOTMAGIC_ENABLE))
$(info MOUSEKEY_ENABLE: .... $(MOUSEKEY_ENABLE))
$(info EXTRAKEY_ENABLE: .... $(EXTRAKEY_ENABLE))
$(info CONSOLE_ENABLE: ..... $(CONSOLE_ENABLE))
$(info COMMAND_ENABLE: ..... $(COMMAND_ENABLE))
$(info NKRO_ENABLE: ........ $(NKRO_ENABLE))
$(info UNICODE_ENABLE: ..... $(UNICODE_ENABLE))
$(info ============================================================)
$(info )
ifndef QUANTUM_DIR
include ../../../../Makefile
endif