summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-08-08 21:26:19 +0200
committerJack Humbert <jack.humb@gmail.com>2017-08-08 22:06:45 +0200
commit26d348b6d14e38c297c7c752740b5ffae8c6198c (patch)
tree1467ad2c627632397c02fca9724fbf2f62bff2ef /tmk_core
parent5210f94a56483c23f5d302e654702d56ca70c206 (diff)
downloadqmk_firmware-26d348b6d14e38c297c7c752740b5ffae8c6198c.tar.gz
qmk_firmware-26d348b6d14e38c297c7c752740b5ffae8c6198c.tar.xz
move version info to the top of the output
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/rules.mk6
1 files changed, 1 insertions, 5 deletions
diff --git a/tmk_core/rules.mk b/tmk_core/rules.mk
index c198f9edb..be06d611b 100644
--- a/tmk_core/rules.mk
+++ b/tmk_core/rules.mk
@@ -237,10 +237,6 @@ sizeafter: $(BUILD_DIR)/$(TARGET).hex
# test file sizes eventually
# @if [[ $($(SIZE) --target=$(FORMAT) $(TARGET).hex | $(AWK) 'NR==2 {print "0x"$5}') -gt 0x200 ]]; then $(SECHO) "File is too big!"; fi
-# Display qmk version information.
-qmkversion :
- @$(SILENT) || printf "QMK Firmware v$(shell git describe --abbrev=0 --tags 2>/dev/null)\n\n"
-
# Display compiler version information.
gccversion :
@$(SILENT) || $(CC) --version
@@ -279,7 +275,7 @@ gccversion :
$(eval CMD=$(BIN) $< $@ || exit 0)
@$(BUILD_CMD)
-BEGIN = qmkversion gccversion sizebefore
+BEGIN = gccversion sizebefore
# Link: create ELF output file from object files.
.SECONDARY : $(BUILD_DIR)/$(TARGET).elf