~kris/9p

disco

ref: 9dc2df518e2cdf563f879c2b7f95064303d0bb57 disco/mkfile -rw-r--r-- 366 bytes
9dc2df51 — Sean Hinchee patching out color 9 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: 
	go build

deps: 
	mkdir -p $GOPATH/src/bitbucket.org/henesy/disco
	dircp ./ $GOPATH/src/bitbucket.org/henesy/disco

crypto:
	orig=`{pwd}
	mkdir -p $GOPATH/src/golang.org/x/crypto
	cd $GOPATH/src/golang.org/x
	hget https://github.com/golang/crypto/archive/master.zip > crypto.zip; unzip -f crypto.zip
	dircp crypto-master crypto; rm -r crypto-master
	cd $orig