Skip to content

Instantly share code, notes, and snippets.

@torumakabe
Created February 16, 2021 06:59
Show Gist options
  • Save torumakabe/b0d2537de49d893b91df8c85f4941211 to your computer and use it in GitHub Desktop.
Save torumakabe/b0d2537de49d893b91df8c85f4941211 to your computer and use it in GitHub Desktop.
Makefile template for Go
.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