blob: 5a10380edb5dd4fae69267c91212a57ec904573a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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.
include ../../../src/Make.inc
TARG=life
CGOFILES=\
life.go\
CGO_OFILES=\
c-life.o\
CLEANFILES+=life
include ../../../src/Make.pkg
life: install main.go
$(GC) main.go
$(LD) -o $@ main.$O
|