Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: skip release build when BUILDTYPE=Debug
  • Loading branch information
bnoordhuis committed Oct 9, 2015
commit 14e9d61e71e5f558075b123ff290aaac0e55044b
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ V ?= 1
ifeq ($(BUILDTYPE),Release)
all: out/Makefile $(NODE_EXE)
else
all: out/Makefile $(NODE_EXE) $(NODE_G_EXE)
all: out/Makefile $(NODE_G_EXE)
endif

# The .PHONY is needed to ensure that we recursively use the out/Makefile
Expand Down