aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-11-14 22:14:59 -0500
committerJack Humbert <jack.humb@gmail.com>2017-11-14 22:14:59 -0500
commitcb64a886e9c53ca165a057c9e3d0dc1022c4d323 (patch)
tree3b1c7c3e86f33a2bf981cd3754efe5ad90f47ee8 /Makefile
parentdbabfb082c71709a5bcbe6d2847ff3fe1619378a (diff)
downloadqmk_firmware-cb64a886e9c53ca165a057c9e3d0dc1022c4d323.tar.gz
qmk_firmware-cb64a886e9c53ca165a057c9e3d0dc1022c4d323.zip
update travis script
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e67e2fa09..c98c0f298 100644
--- a/Makefile
+++ b/Makefile
@@ -21,8 +21,10 @@ override SILENT := false
21 21
22QMK_VERSION := $(shell git describe --abbrev=0 --tags 2>/dev/null) 22QMK_VERSION := $(shell git describe --abbrev=0 --tags 2>/dev/null)
23ifneq ($(QMK_VERSION),) 23ifneq ($(QMK_VERSION),)
24ifneq ($(SILENT),)
24$(info QMK Firmware $(QMK_VERSION)) 25$(info QMK Firmware $(QMK_VERSION))
25endif 26endif
27endif
26 28
27ON_ERROR := error_occurred=1 29ON_ERROR := error_occurred=1
28 30
@@ -114,6 +116,14 @@ list-keyboards:
114 echo $(KEYBOARDS) 116 echo $(KEYBOARDS)
115 exit 0 117 exit 0
116 118
119define PRINT_KEYBOARD
120 $(info $(PRINTING_KEYBOARD))
121endef
122
123generate-keyboards-file:
124 $(foreach PRINTING_KEYBOARD,$(KEYBOARDS),$(eval $(call PRINT_KEYBOARD)))
125 exit 0
126
117#Compatibility with the old make variables, anything you specify directly on the command line 127#Compatibility with the old make variables, anything you specify directly on the command line
118# always overrides the detected folders 128# always overrides the detected folders
119ifdef keyboard 129ifdef keyboard