diff options
author | Alex <alex@scerba.org> | 2024-03-13 16:58:23 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-10-29 13:20:00 -0400 |
commit | f67034097bbde645e38fe5ef4328d37d8f9e04a2 (patch) | |
tree | 67f0606fa1aea5047c44101eaa9a1784adde72d1 | |
parent | 3051a49fbddc1750fbe40bdd9b4167252dd6afca (diff) |
Reflect new paths
-rw-r--r-- | Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -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: |