summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-07-28 21:02:29 +1000
committerGitHub <noreply@github.com>2021-07-28 12:02:29 +0100
commit491b83aa32e59be68387c25fcfa7bd6e7cb51479 (patch)
tree2ebef6982bd93447973d4d124b4889d34a0f1fa2
parentfcce9f2a4f3e59ba41749c22460fe549e717393c (diff)
Update "make format" message (#13741)0.13.27
* Update "make format" message * Add examples for `qmk` command as well
-rw-r--r--Makefile19
1 files changed, 14 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e007ae3679..f91d95a12c 100644
--- a/Makefile
+++ b/Makefile
@@ -252,11 +252,20 @@ define PARSE_RULE
else
$$(info make: *** No rule to make target '$1'. Stop.)
$$(info |)
- $$(info | QMK's make format recently changed to use folder locations and colons:)
- $$(info | make project_folder:keymap[:target])
- $$(info | Examples:)
- $$(info | make dz60:default)
- $$(info | make planck/rev6:default:flash)
+ $$(info | QMK's make format is:)
+ $$(info | make keyboard_folder:keymap_folder[:target])
+ $$(info |)
+ $$(info | Where `keyboard_folder` is the path to the keyboard relative to)
+ $$(info | `qmk_firmware/keyboards/`, and `keymap_folder` is the name of the)
+ $$(info | keymap folder under that board's `keymaps/` directory.)
+ $$(info |)
+ $$(info | Examples:)
+ $$(info | keyboards/dz60, keyboards/dz60/keymaps/default)
+ $$(info | -> make dz60:default)
+ $$(info | -> qmk compile -kb dz60 -km default)
+ $$(info | keyboards/planck/rev6, keyboards/planck/keymaps/default)
+ $$(info | -> make planck/rev6:default:flash)
+ $$(info | -> qmk flash -kb planck/rev6 -km default)
$$(info |)
endif
endef