7.7 KiB
More detailed make instruction
The full syntax of the make command is
<keyboard_folder>:<keymap>:<target>,
where:
<keyboard_folder>is the path of the keyboard, for exampleplanck- Use
allto compile all keyboards - Specify the path to compile a revision, for example
planck/rev4orplanck/rev3 - If the keyboard doesn’t have any folders, it can be left out
- To compile the default folder, you can leave it out
- Use
<keymap>is the name of the keymap, for examplealgernon- Use
allto compile all keymaps
- Use
<target>will be explained in more detail below.
The <target> means the following * If no target is
given, then it’s the same as all below * all
compiles as many keyboard/revision/keymap combinations as specified. For
example, make planck/rev4:default:all will generate a
single .hex, while make planck/rev4:all will generate a hex
for every keymap available to the planck. * dfu,
teensy or dfu-util, compile and upload the
firmware to the keyboard. If the compilation fails, then nothing will be
uploaded. The programmer to use depends on the keyboard. For most
keyboards it’s dfu, but for ChibiOS keyboards you should
use dfu-util, and teensy for standard Teensys.
To find out which command you should use for your keyboard, check the
keyboard specific readme. * Note: some operating
systems need root access for these commands to work, so in that case you
need to run for example sudo make planck/rev4:default:dfu.
* clean, cleans the build output folders to make sure that
everything is built from scratch. Run this before normal compilation if
you have some unexplainable problems.
You can also add extra options at the end of the make command line, after the target
make COLOR=false- turns off color outputmake SILENT=true- turns off output besides errors/warningsmake VERBOSE=true- outputs all of the gcc stuff (not interesting, unless you need to debug)make EXTRAFLAGS=-E- Preprocess the code without doing any compiling (useful if you are trying to debug #define commands)
The make command itself also has some additional options, type
make --help for more information. The most useful is
probably -jx, which specifies that you want to compile
using more than one CPU, the x represents the number of
CPUs that you want to use. Setting that can greatly reduce the compile
times, especially if you are compiling many keyboards/keymaps. I usually
set it to one less than the number of CPUs that I have, so that I have
some left for doing other things while it’s compiling. Note that not all
operating systems and make versions supports that option.
Here are some examples commands
make all:allbuilds everything (all keyboard folders, all keymaps). Running justmakefrom therootwill also run this.make ergodox_infinity:algernon:cleanwill clean the build output of the Ergodox Infinity keyboard.make planck/rev4:default:dfu COLOR=falsebuilds and uploads the keymap without color output.
rules.mk options
Set these variables to no to disable them, and
yes to enable them.
BOOTMAGIC_ENABLE
This allows you to hold a key and the salt key (space by default) and have access to a various EEPROM settings that persist over power loss. It’s advised you keep this disabled, as the settings are often changed by accident, and produce confusing results that makes it difficult to debug. It’s one of the more common problems encountered in help sessions.
Consumes about 1000 bytes.
MOUSEKEY_ENABLE
This gives you control over cursor movements and clicks via keycodes/custom functions.
EXTRAKEY_ENABLE
This allows you to use the system and audio control key codes.
CONSOLE_ENABLE
This allows you to print messages that can be read using hid_listen.
By default, all debug (dprint) print (print, xprintf), and user print (uprint) messages will be enabled. This will eat up a significant portion of the flash and may make the keyboard .hex file too big to program.
To disable debug messages (dprint) and reduce the .hex file
size, include #define NO_DEBUG in your
config.h file.
To disable print messages (print, xprintf) and user
print messages (uprint) and reduce the .hex file size, include
#define NO_PRINT in your config.h file.
To disable print messages (print, xprintf) and
KEEP user print messages (uprint), include
#define USER_PRINT in your config.h file.
To see the text, open hid_listen and enjoy looking at
your printed messages.
NOTE: Do not include uprint messages in anything other than your keymap code. It must not be used within the QMK system framework. Otherwise, you will bloat other people’s .hex files.
Consumes about 400 bytes.
COMMAND_ENABLE
This enables magic commands, typically fired with the default magic
key combo LSHIFT+RSHIFT+KEY. Magic commands include turning
on debugging messages (MAGIC+D) or temporarily toggling
NKRO (MAGIC+N).
SLEEP_LED_ENABLE
Enables your LED to breath while your computer is sleeping. Timer1 is being used here. This feature is largely unused and untested, and needs updating/abstracting.
NKRO_ENABLE
This allows the keyboard to tell the host OS that up to 248 keys are
held down at once (default without NKRO is 6). NKRO is off by default,
even if NKRO_ENABLE is set. NKRO can be forced by adding
#define FORCE_NKRO to your config.h or by binding
MAGIC_TOGGLE_NKRO to a key and then hitting the key.
BACKLIGHT_ENABLE
This enables your backlight on Timer1 and ports B5, B6, or B7 (for
now). You can specify your port by putting this in your
config.h:
#define BACKLIGHT_PIN B7
MIDI_ENABLE
This enables MIDI sending and receiving with your keyboard. To enter
MIDI send mode, you can use the keycode MI_ON, and
MI_OFF to turn it off. This is a largely untested feature,
but more information can be found in the quantum/quantum.c
file.
UNICODE_ENABLE
This allows you to send unicode symbols via
UC(<unicode>) in your keymap. Only codes up to 0x7FFF
are currently supported.
UNICODEMAP_ENABLE
This allows sending unicode symbols using
X(<unicode>) in your keymap. Codes up to 0xFFFFFFFF
are supported, including emojis. You will need to maintain a separate
mapping table in your keymap file.
Known limitations: - Under Mac OS, only codes up to 0xFFFF are supported. - Under Linux ibus, only codes up to 0xFFFFF are supported (but anything important is still under this limit for now).
Characters out of range supported by the OS will be ignored.
BLUETOOTH_ENABLE
This allows you to interface with a Bluefruit EZ-key to send keycodes wirelessly. It uses the D2 and D3 pins.
AUDIO_ENABLE
This allows you output audio on the C6 pin (needs abstracting). See the audio page for more information.
FAUXCLICKY_ENABLE
Uses buzzer to emulate clicky switches. A cheap imitation of the Cherry blue switches. By default, uses the C6 pin, same as AUDIO_ENABLE.
VARIABLE_TRACE
Use this to debug changes to variable values, see the tracing variables section of the Unit Testing page for more information.
API_SYSEX_ENABLE
This enables using the Quantum SYSEX API to send strings (somewhere?)
This consumes about 5390 bytes.
KEY_LOCK_ENABLE
This enables key lock. This consumes an additional 260 bytes.
Customizing Makefile options on a per-keymap basis
If your keymap directory has a file called rules.mk any
options you set in that file will take precedence over other
rules.mk options for your particular keyboard.
So let’s say your keyboard’s rules.mk has
BACKLIGHT_ENABLE = yes. You want your particular keyboard
to not have the backlight, so you make a file called
rules.mk and specify
BACKLIGHT_ENABLE = no.