Add phony rules to .PHONY (#6301)

build_cmds, rpm, and deb are all phony rules:  They don't produce a
file named build_cmds, rpm, or deb.
This commit is contained in:
Matthew McPherrin 2022-08-17 15:31:19 -04:00 committed by GitHub
parent 79dc37ef9d
commit 455cdade69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ BUILD_TIME_VAR = github.com/letsencrypt/boulder/core.BuildTime
GO_BUILD_FLAGS = -ldflags "-X \"$(BUILD_ID_VAR)=$(BUILD_ID)\" -X \"$(BUILD_TIME_VAR)=$(BUILD_TIME)\" -X \"$(BUILD_HOST_VAR)=$(BUILD_HOST)\""
.PHONY: all build
.PHONY: all build build_cmds rpm deb
all: build
build: $(OBJECTS)