Created
February 16, 2021 06:59
-
-
Save torumakabe/b0d2537de49d893b91df8c85f4941211 to your computer and use it in GitHub Desktop.
Makefile template for Go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DEFAULT_GOAL := build | |
.PHONY: build run | |
build: | |
go build | |
run: build | |
./app_dir_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment