diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..4dd93ae55 --- /dev/null +++ b/Makefile @@ -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