diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,6 +2,10 @@ ifndef VERBOSE | |||
2 | .SILENT: | 2 | .SILENT: |
3 | endif | 3 | endif |
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 |
6 | ifdef silent | 10 | ifdef 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 |
494 | all: all-keyboards | 498 | all: 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 |