2010-04-09 14:31:26 -06:00
|
|
|
# Copyright 2010 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
|
2010-04-09 14:31:26 -06:00
|
|
|
|
|
|
|
TARG=life
|
|
|
|
|
|
|
|
CGOFILES=\
|
2010-12-17 10:51:55 -07:00
|
|
|
life.go\
|
2010-04-09 14:31:26 -06:00
|
|
|
|
2010-12-17 10:51:55 -07:00
|
|
|
CGO_OFILES=\
|
|
|
|
c-life.o\
|
2010-04-09 14:31:26 -06:00
|
|
|
|
2010-12-17 10:51:55 -07:00
|
|
|
CLEANFILES+=life
|
2010-04-09 14:31:26 -06:00
|
|
|
|
|
|
|
include ../../../src/Make.pkg
|
|
|
|
|
|
|
|
life: install main.go
|
|
|
|
$(GC) main.go
|
|
|
|
$(LD) -o $@ main.$O
|