1
0
mirror of https://github.com/golang/go synced 2024-10-03 06:21:21 -06:00
go/misc/cgo/life/Makefile

22 lines
354 B
Makefile
Raw Normal View History

# 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