.PHONY: all link unlink

all:
	echo "no default make target"

link:
	ln -s $(GOPATH)/src/github.com/keybase/stellar-org $(GOPATH)/src/github.com/stellar/go

unlink:
	rm $(GOPATH)/src/github.com/stellar/go
