2009-10-03 10:37:12 -07:00
|
|
|
# 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.
|
|
|
|
|
|
2010-08-18 10:08:49 -04:00
|
|
|
include ../../../src/Make.inc
|
2009-10-03 10:37:12 -07:00
|
|
|
|
|
|
|
|
TARG=stdio
|
|
|
|
|
CGOFILES=\
|
2010-07-14 17:17:53 -07:00
|
|
|
align.go\
|
|
|
|
|
file.go\
|
|
|
|
|
test.go\
|
2010-12-13 13:20:04 -05:00
|
|
|
test1.go\
|
2009-10-03 10:37:12 -07:00
|
|
|
|
2009-10-03 11:33:51 -07:00
|
|
|
CLEANFILES+=hello fib chain run.out
|
2009-10-03 10:37:12 -07:00
|
|
|
|
2009-11-23 17:32:51 -08:00
|
|
|
include ../../../src/Make.pkg
|
2009-10-03 10:37:12 -07:00
|
|
|
|
|
|
|
|
%: install %.go
|
2010-08-30 15:40:56 -04:00
|
|
|
$(GC) $*.go
|
|
|
|
|
$(LD) -o $@ $*.$O
|