This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- No code changes - Version now reports 1.0.5 - Fix makefile [#92283252]
- Loading branch information
Michael Fraenkel
committed
Apr 13, 2015
1 parent
2944fa3
commit 07d250f
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
GODEPS := $(shell godep path) | ||
GOPATH := $(GODEPS):$(GOPATH) | ||
|
||
grammar: | ||
go get github.com/pointlander/peg | ||
peg dynaml/dynaml.peg | ||
|
||
release: spiff_linux_amd64.zip spiff_darwin_amd64.zip | ||
release: spiff_linux_amd64.zip spiff_darwin_amd64.zip | ||
|
||
spiff_linux_amd64.zip: | ||
GOOS=linux GOARCH=amd64 go build -o spiff . | ||
GOPATH=$(GOPATH) GOOS=linux GOARCH=amd64 go build -o spiff . | ||
zip spiff_linux_amd64.zip spiff | ||
rm spiff | ||
|
||
spiff_darwin_amd64.zip: | ||
GOOS=darwin GOARCH=amd64 go build -o spiff . | ||
GOPATH=$(GOPATH) GOOS=darwin GOARCH=amd64 go build -o spiff . | ||
zip spiff_darwin_amd64.zip spiff | ||
rm spiff |
This file contains 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