aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2016-08-27 18:13:01 +0300
committerFred Sundvik <fsundvik@gmail.com>2016-08-27 21:57:49 +0300
commit6410f0c021792ebbbd279fc6150f197274e914c8 (patch)
treebeecbf47609610a34ce6daac24442b96666b3f2b
parent1b963117fedf91e4bef97d75eb4e3e0b3b1e1dfd (diff)
downloadqmk_firmware-6410f0c021792ebbbd279fc6150f197274e914c8.tar.gz
qmk_firmware-6410f0c021792ebbbd279fc6150f197274e914c8.zip
The all target makes all keyboards and all tests
-rw-r--r--Makefile6
-rw-r--r--build_keyboard.mk3
2 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 78bf50ed4..0aaf58578 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,10 @@ ifndef VERBOSE
2.SILENT: 2.SILENT:
3endif 3endif
4 4
5# Never run this makefile in parallel, as it could screw things up
6# It won't affect the submakes, so you still get the speedup from specifying -jx
7.NOTPARALLEL:
8
5# Allow the silent with lower caps to work the same way as upper caps 9# Allow the silent with lower caps to work the same way as upper caps
6ifdef silent 10ifdef silent
7 SILENT = $(silent) 11 SILENT = $(silent)
@@ -491,7 +495,7 @@ $(SUBPROJECTS): %: %-allkm
491 495
492# All should compile everything 496# All should compile everything
493.PHONY: all 497.PHONY: all
494all: all-keyboards 498all: all-keyboards test-all
495 499
496# Define some shortcuts, mostly for compability with the old syntax 500# Define some shortcuts, mostly for compability with the old syntax
497.PHONY: all-keyboards 501.PHONY: all-keyboards
diff --git a/build_keyboard.mk b/build_keyboard.mk
index 5bec4ecf6..04632c1c9 100644
--- a/build_keyboard.mk
+++ b/build_keyboard.mk
@@ -198,9 +198,6 @@ ifeq ($(strip $(VISUALIZER_ENABLE)), yes)
198 include $(VISUALIZER_PATH)/visualizer.mk 198 include $(VISUALIZER_PATH)/visualizer.mk
199endif 199endif
200 200
201$(info $(VPATH))
202
203
204OUTPUTS := $(KEYMAP_OUTPUT) $(KEYBOARD_OUTPUT) 201OUTPUTS := $(KEYMAP_OUTPUT) $(KEYBOARD_OUTPUT)
205$(KEYMAP_OUTPUT)_SRC := $(SRC) 202$(KEYMAP_OUTPUT)_SRC := $(SRC)
206$(KEYMAP_OUTPUT)_DEFS := $(OPT_DEFS) -DQMK_KEYBOARD=\"$(KEYBOARD)\" -DQMK_KEYMAP=\"$(KEYMAP)\" 203$(KEYMAP_OUTPUT)_DEFS := $(OPT_DEFS) -DQMK_KEYBOARD=\"$(KEYBOARD)\" -DQMK_KEYMAP=\"$(KEYMAP)\"