Skip to content

Commit

Permalink
build: add a Makefile to help other to build
Browse files Browse the repository at this point in the history
Signed-off-by: Date Huang <tjjh89017@hotmail.com>
  • Loading branch information
tjjh89017 committed Jan 28, 2025
1 parent d79f6b8 commit 028a678
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

APP=stunmesh-go

.PHONY build
build: clean
go build -v -o ${APP}

.PHONY clean
clean:
go clean

.PHONY all
all: build

0 comments on commit 028a678

Please sign in to comment.