Skip to content

Commit

Permalink
added a Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
jagottsicher committed Sep 30, 2022
1 parent 01d08d2 commit b1f48b6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ build:
GOARCH=amd64 GOOS=window go build -o ${BINARY_NAME}-windows turn.go

run:
./${BINARY_NAME}
./${BINARY_NAME}

build_and_run: build run

clean:
go clean
rm ${BINARY_NAME}-darwin
rm ${BINARY_NAME}-linux
rm ${BINARY_NAME}-windows
go clean
rm ${BINARY_NAME}-darwin
rm ${BINARY_NAME}-linux
rm ${BINARY_NAME}-windows

0 comments on commit b1f48b6

Please sign in to comment.