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