]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
The all target makes all keyboards and all tests
authorFred Sundvik <fsundvik@gmail.com>
Sat, 27 Aug 2016 15:13:01 +0000 (18:13 +0300)
committerFred Sundvik <fsundvik@gmail.com>
Sat, 27 Aug 2016 18:57:49 +0000 (21:57 +0300)
Makefile
build_keyboard.mk

index 78bf50ed410fedc883c682fe30d77aee0c1db878..0aaf585786cbe28bde3ee2ae9ef51c089928e0e7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,10 @@ ifndef VERBOSE
 .SILENT:
 endif
 
+# Never run this makefile in parallel, as it could screw things up
+# It won't affect the submakes, so you still get the speedup from specifying -jx
+.NOTPARALLEL:
+
 # Allow the silent with lower caps to work the same way as upper caps
 ifdef silent
     SILENT = $(silent)
@@ -491,7 +495,7 @@ $(SUBPROJECTS): %: %-allkm
 
 # All should compile everything
 .PHONY: all
-all: all-keyboards 
+all: all-keyboards test-all
 
 # Define some shortcuts, mostly for compability with the old syntax
 .PHONY: all-keyboards
index 5bec4ecf66f0ed571de2030ecae48116ff6752c2..04632c1c9476d7813b45f196120c35475c6813a1 100644 (file)
@@ -198,9 +198,6 @@ ifeq ($(strip $(VISUALIZER_ENABLE)), yes)
        include $(VISUALIZER_PATH)/visualizer.mk
 endif
 
-$(info $(VPATH))
-
-
 OUTPUTS := $(KEYMAP_OUTPUT) $(KEYBOARD_OUTPUT)
 $(KEYMAP_OUTPUT)_SRC := $(SRC)
 $(KEYMAP_OUTPUT)_DEFS := $(OPT_DEFS) -DQMK_KEYBOARD=\"$(KEYBOARD)\" -DQMK_KEYMAP=\"$(KEYMAP)\"