From f67034097bbde645e38fe5ef4328d37d8f9e04a2 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 13 Mar 2024 16:58:23 -0400 Subject: Reflect new paths --- Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 410f1b0..963a540 100644 --- a/Makefile +++ b/Makefile @@ -1,25 +1,26 @@ .DEFAULT_GOAL := run -bins := ./website +http_path := ./cmd/http +bins := ./http fmt: - go fmt . + go fmt $(http_path) .PHONY:fmt lint: fmt - golint . + golint $(http_path) .PHONY:lint vet: lint - go vet . + go vet $(http_path) .PHONY:vet run: vet - go run . + go run $(http_path) .PHONY:run build: - go build . + go build $(http_path) .PHONY:build clean: -- cgit v1.2.3