mirror of
https://github.com/golang/go
synced 2024-11-22 22:10:03 -07:00
da392d9136
R=adg, r, PeterGo CC=golang-dev https://golang.org/cl/1942044
20 lines
391 B
Makefile
20 lines
391 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.inc
|
|
|
|
TARG=stdio
|
|
CGOFILES=\
|
|
align.go\
|
|
file.go\
|
|
test.go\
|
|
|
|
CLEANFILES+=hello fib chain run.out
|
|
|
|
include ../../../src/Make.pkg
|
|
|
|
%: install %.go
|
|
$(QUOTED_GOBIN)/$(GC) $*.go
|
|
$(QUOTED_GOBIN)/$(LD) -o $@ $*.$O
|