| 12345678910111213141516171819202122232425262728293031323334353637 | ifneq (oneshell, $(findstring oneshell, $(.FEATURES)))  $(error GNU make 3.82 or later is required)endifall: ${GOPATH}/bin/hercules ${GOPATH}/bin/hercules-generate-plugin ${GOPATH}/bin/hercules-combinetest: all	go test gopkg.in/src-d/hercules.v3dependencies: ${GOPATH}/src/gopkg.in/bblfsh/client-go.v2 ${GOPATH}/src/gopkg.in/src-d/hercules.v3 ${GOPATH}/src/gopkg.in/src-d/hercules.v3/pb/pb.pb.go ${GOPATH}/src/gopkg.in/src-d/hercules.v3/cmd/hercules-generate-plugin/plugin_template_source.go${GOPATH}/src/gopkg.in/src-d/hercules.v3/pb/pb.pb.go:	PATH=$$PATH:$$GOPATH/bin protoc --gogo_out=pb --proto_path=pb pb/pb.proto${GOPATH}/src/gopkg.in/src-d/hercules.v3/cmd/hercules-generate-plugin/plugin_template_source.go:	cd ${GOPATH}/src/gopkg.in/src-d/hercules.v3/cmd/hercules-generate-plugin && go generate${GOPATH}/src/gopkg.in/src-d/hercules.v3:	go get -d gopkg.in/src-d/hercules.v3/....ONESHELL:${GOPATH}/src/gopkg.in/bblfsh/client-go.v2:	go get -v gopkg.in/bblfsh/client-go.v2/... || true	cd $$GOPATH/src/gopkg.in/bblfsh/client-go.v2	make dependencies.ONESHELL:${GOPATH}/bin/hercules: dependencies *.go cmd/hercules/*.go rbtree/*.go yaml/*.go toposort/*.go pb/*.go	cd ${GOPATH}/src/gopkg.in/src-d/hercules.v3	go get -ldflags "-X gopkg.in/src-d/hercules.v3.GIT_HASH=$$(git rev-parse HEAD)" gopkg.in/src-d/hercules.v3/cmd/hercules${GOPATH}/bin/hercules-generate-plugin: cmd/hercules-generate-plugin/*.go ${GOPATH}/bin/hercules	go get -ldflags "-X gopkg.in/src-d/hercules.v3.GIT_HASH=$$(git rev-parse HEAD)" gopkg.in/src-d/hercules.v3/cmd/hercules-generate-plugin${GOPATH}/bin/hercules-combine: cmd/hercules-combine/*.go ${GOPATH}/bin/hercules	go get -ldflags "-X gopkg.in/src-d/hercules.v3.GIT_HASH=$$(git rev-parse HEAD)" gopkg.in/src-d/hercules.v3/cmd/hercules-combine
 |