Created
March 3, 2017 04:01
-
-
Save andrewhoff/c6d843dfe0136826f84cc9af5fe8150d to your computer and use it in GitHub Desktop.
Basic go app makefile
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
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