Skip to content

Commit

Permalink
The all target makes all keyboards and all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fredizzimo committed Aug 27, 2016
1 parent 1b96311 commit 6410f0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions build_keyboard.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)\"
Expand Down

0 comments on commit 6410f0c

Please sign in to comment.