1
0
mirror of https://github.com/golang/go synced 2024-10-04 09:21:21 -06:00
go/misc/cgo/test/Makefile
Brad Fitzpatrick e8689404a7 cgo: add missing semicolon in generated struct
This affected certain signatures needing padding
like:

//export Foo
func Foo() (int, C.long) { ... }

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/4745047
2011-07-18 07:23:52 -07:00

26 lines
408 B
Makefile

# Copyright 2011 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=runtime/cgotest
CGOFILES=\
align.go\
basic.go\
callback.go\
env.go\
exports.go\
issue1222.go\
issue1328.go\
issue1560.go\
CGO_OFILES=\
callback_c.o\
OFILES=\
runtime.$O\
include ../../../src/Make.pkg