🔥 Removed useless commands in Makefile

This commit is contained in:
Maxim Lebedev 2023-01-16 17:17:57 +06:00
parent 8db9a8b1c4
commit fe12d487d0
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 0 additions and 2 deletions

View File

@ -17,11 +17,9 @@ all: main.go
$(GO) build -v $(GOFLAGS) -o $(EXECUTABLE)
clean: ## Delete all files in the current directory that are normally created by building the program
-rm $(srcdir)/internal/testing/httptest/{cert,key}.pem
$(GO) clean
check: ## Perform self-tests
$(GO) generate $(srcdir)/internal/testing/httptest/...
$(GO) test -v -cover -failfast -short -shuffle=on $(GOFLAGS) $(srcdir)/...
.PHONY: help