From 34c4abc341bd1fb24a37458caaab59716c6cd395 Mon Sep 17 00:00:00 2001 From: Daniel Canter Date: Thu, 2 Dec 2021 19:31:12 -0800 Subject: [PATCH] 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 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 75669b4e3..96c048f0f 100644 --- a/Makefile +++ b/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 .DEFAULT: default +# Forcibly set the default goal to all, in case an include above brought in a rule definition. +.DEFAULT_GOAL := all + all: binaries check: proto-fmt ## run all linters