Skip to content

Instantly share code, notes, and snippets.

@andrewhoff
Created March 3, 2017 04:01
Show Gist options
  • Save andrewhoff/c6d843dfe0136826f84cc9af5fe8150d to your computer and use it in GitHub Desktop.
Save andrewhoff/c6d843dfe0136826f84cc9af5fe8150d to your computer and use it in GitHub Desktop.
Basic go app makefile
bin_name = $(notdir $(CURDIR))
all: clean build
clean:
rm -f ./$(bin_name)
build:
go build .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment