Skip to content

Commit

Permalink
Fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed Dec 4, 2024
1 parent 99eae00 commit 453391f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
default:
@grep '^[^#[:space:].].*:' Makefile

start: go run .
start:
go run .

.PHONY=build
build: go build .
build:
go build .

release: release_darwin_arm64 release_darwin_arm64 release_linux_amd64 release_linux_arm64
release_linux_amd64:
Expand Down

0 comments on commit 453391f

Please sign in to comment.