From 41bbed37c26b0b829fb730b67214893d9a940a7c Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Fri, 10 Jun 2022 14:11:35 +0500 Subject: [PATCH] :technologist: Removed main.go path in make all script --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 63284fa..03302bb 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,8 @@ EXECUTABLE ?= indieauth .PHONY: all clean check help -all: - $(GO) build -v $(GOFLAGS) -o $(EXECUTABLE) $< +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