Ticket #22506: Makefile

File Makefile, 174 bytes (added by nefar@…, 14 years ago)

belongs in files/

Line 
1GOROOT=$(shell pwd)
2GOBIN=${GOROOT}/bin
3GOARCH=amd64
4GOOS=darwin
5PATH:=${GOBIN}:${PATH}
6export PATH GOROOT GOBIN GOARCH GOOS
7
8all:
9        mkdir ${GOBIN}
10        ( cd src && ./all.bash )
11