1export GOPATH=$(CURDIR)
2
3server: src/github.com/nmeum/ninenano
4 cd $< && go build -o $@
5
6src/github.com/nmeum/ninenano: $(GOPATH)
7 mkdir -p $(shell dirname $@)
8 ln -fs $< $@
9
10.PHONY: server
Client implementation of the 9P protocol for constrained devices
git clone https://git.8pit.net/ninenano.git
1export GOPATH=$(CURDIR)
2
3server: src/github.com/nmeum/ninenano
4 cd $< && go build -o $@
5
6src/github.com/nmeum/ninenano: $(GOPATH)
7 mkdir -p $(shell dirname $@)
8 ln -fs $< $@
9
10.PHONY: server