Last active
March 23, 2019 04:04
-
-
Save andhikayuana/a25fa2f6df844df8b31efa8934fbebf9 to your computer and use it in GitHub Desktop.
makefile build golang app
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
# @author andhikayuana | |
# @since Jan, 16 2019 | |
GO=$(shell which go) | |
DEP=$(shell which dep) | |
DIR=$(shell pwd) | |
BUILD_DIR=$(DIR)/build | |
GOARCH=amd64 | |
PROJECT_NAME=oauth2-demo | |
PACKAGE=github.com/andhikayuana/$(PROJECT_NAME) | |
install-dep: | |
$(DEP) ensure -v | |
run: | |
$(GO) run $(DIR)/cmd/main.go | |
build: build-linux build-darwin build-windows | |
build-linux: | |
GOOS=linux GOARCH=$(GOARCH) $(GO) build -o $(BUILD_DIR)/$(PROJECT_NAME)_linux_$(GOARCH) $(PACKAGE)/cmd | |
build-darwin: | |
GOOS=darwin GOARCH=$(GOARCH) $(GO) build -o $(BUILD_DIR)/$(PROJECT_NAME)_darwin_$(GOARCH) $(PACKAGE)/cmd | |
build-windows: | |
GOOS=windows GOARCH=$(GOARCH) $(GO) build -o $(BUILD_DIR)/$(PROJECT_NAME)_windows_$(GOARCH).exe $(PACKAGE)/cmd | |
clean: | |
rm -rf build | |
.PHONY: install-deb run build build-linux build-darwin build-windows |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment