From 3b7655f9cea7ba72a9a358f61eb3ec0ab9f10ef0 Mon Sep 17 00:00:00 2001 From: Andrew Dona-Couch Date: Thu, 6 Aug 2020 00:29:53 -0400 Subject: [PATCH] makefile: all and clean are .PHONY --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e46308..e5f15ac 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ RUSTUP_TOOLCHAIN ?= nightly PATCHES := $(foreach chip, $(CHIPS), $(wildcard patch/$(chip).yaml)) DEPS := $(foreach patch, $(PATCHES), $(patsubst patch/%.yaml, .deps/%.d, $(patch))) -.PHONY: chips deps $(CHIPS) vector +.PHONY: chips deps $(CHIPS) vector all clean chips: $(CHIPS) deps: $(DEPS) vector: macros/src/vector.rs -- 2.48.1