Skip to content

Commit

Permalink
makefile .
Browse files Browse the repository at this point in the history
  • Loading branch information
rasheedmhd committed Jul 31, 2024
1 parent 19703af commit a9c5bf7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions go/ch1/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.DEFAULT_GOAL := build

.PHONY: fmt vet build
.PHONY: fmt vet build clean
fmt:
go fmt ./
go fmt ./
vet: fmt
go vet ./
go vet ./
build: vet
go build
go build
clean: build
go clean

0 comments on commit a9c5bf7

Please sign in to comment.