Skip to content

Commit

Permalink
Merge pull request #6 from rajasec/makefilechanges
Browse files Browse the repository at this point in the history
Adding Makefile for building ocitools
  • Loading branch information
Mrunal Patel committed Nov 12, 2015
2 parents 423eac2 + 2510b6d commit 1e77ccf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
BUILDTAGS=
export GOPATH:=$(CURDIR)/Godeps/_workspace:$(GOPATH)

all:
go build -tags "$(BUILDTAGS)" -o ocitools .
go build -tags "$(BUILDTAGS)" -o runtimetest ./cmd/runtimetest

install:
cp ocitools /usr/local/bin/ocitools

clean:
rm ocitools runtimetest

0 comments on commit 1e77ccf

Please sign in to comment.