Skip to content

Commit

Permalink
Adding Makefile for building ocitools
Browse files Browse the repository at this point in the history
Signed-off-by: rajasec <rajasec79@gmail.com>
  • Loading branch information
rajasec committed Nov 11, 2015
1 parent 423eac2 commit 2510b6d
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 2510b6d

Please sign in to comment.