mirror of
https://github.com/golang/go
synced 2024-11-14 14:20:30 -07:00
857d4cf1a9
This change removes the necessity to have GOBIN in $PATH, and also doesn't assume that the build is being run from $GOROOT/src. This is a minimal set of necessary changes to get Go to build happily from the FreeBSD ports collection. R=rsc CC=golang-dev https://golang.org/cl/171044
18 lines
375 B
Makefile
18 lines
375 B
Makefile
# Copyright 2009 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
include ../../../src/Make.$(GOARCH)
|
|
|
|
TARG=stdio
|
|
CGOFILES=\
|
|
file.go
|
|
|
|
CLEANFILES+=hello fib chain run.out
|
|
|
|
include ../../../src/Make.pkg
|
|
|
|
%: install %.go
|
|
$(QUOTED_GOBIN)/$(GC) $*.go
|
|
$(QUOTED_GOBIN)/$(LD) -o $@ $*.$O
|