Fix default makefile target for windows
A recent change altered the default target that would get run for the makefile. This ended up making a standalone 'make' invocation only build the Windows shim and nothing else. This was affecting the CI of some other projects that relied on 'make' building containerd, ctr, and friends. Signed-off-by: Daniel Canter <dcanter@microsoft.com>
This commit is contained in:
parent
106086d65a
commit
34c4abc341
3
Makefile
3
Makefile
@ -141,6 +141,9 @@ CRIDIR=$(OUTPUTDIR)/cri
|
|||||||
.PHONY: clean all AUTHORS build binaries test integration generate protos checkprotos coverage ci check help install uninstall vendor release mandir install-man genman install-cri-deps cri-release cri-cni-release cri-integration install-deps bin/cri-integration.test
|
.PHONY: clean all AUTHORS build binaries test integration generate protos checkprotos coverage ci check help install uninstall vendor release mandir install-man genman install-cri-deps cri-release cri-cni-release cri-integration install-deps bin/cri-integration.test
|
||||||
.DEFAULT: default
|
.DEFAULT: default
|
||||||
|
|
||||||
|
# Forcibly set the default goal to all, in case an include above brought in a rule definition.
|
||||||
|
.DEFAULT_GOAL := all
|
||||||
|
|
||||||
all: binaries
|
all: binaries
|
||||||
|
|
||||||
check: proto-fmt ## run all linters
|
check: proto-fmt ## run all linters
|
||||||
|
Loading…
Reference in New Issue
Block a user