aboutsummaryrefslogtreecommitdiff
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)
downloadqmk_firmware-491b83aa32e59be68387c25fcfa7bd6e7cb51479.tar.gz
qmk_firmware-491b83aa32e59be68387c25fcfa7bd6e7cb51479.zip
Update "make format" message (#13741)
* 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 e007ae367..f91d95a12 100644
--- a/Makefile
+++ b/Makefile
@@ -252,11 +252,20 @@ define PARSE_RULE
252 else 252 else
253 $$(info make: *** No rule to make target '$1'. Stop.) 253 $$(info make: *** No rule to make target '$1'. Stop.)
254 $$(info |) 254 $$(info |)
255 $$(info | QMK's make format recently changed to use folder locations and colons:) 255 $$(info | QMK's make format is:)
256 $$(info | make project_folder:keymap[:target]) 256 $$(info | make keyboard_folder:keymap_folder[:target])
257 $$(info | Examples:) 257 $$(info |)
258 $$(info | make dz60:default) 258 $$(info | Where `keyboard_folder` is the path to the keyboard relative to)
259 $$(info | make planck/rev6:default:flash) 259 $$(info | `qmk_firmware/keyboards/`, and `keymap_folder` is the name of the)
260 $$(info | keymap folder under that board's `keymaps/` directory.)
261 $$(info |)
262 $$(info | Examples:)
263 $$(info | keyboards/dz60, keyboards/dz60/keymaps/default)
264 $$(info | -> make dz60:default)
265 $$(info | -> qmk compile -kb dz60 -km default)
266 $$(info | keyboards/planck/rev6, keyboards/planck/keymaps/default)
267 $$(info | -> make planck/rev6:default:flash)
268 $$(info | -> qmk flash -kb planck/rev6 -km default)
260 $$(info |) 269 $$(info |)
261 endif 270 endif
262endef 271endef