mirror of
https://github.com/golang/go
synced 2024-11-14 18:40:29 -07:00
91cb3489ab
Also delete gotest, since it's messy to fix and slated for deletion anyway. A couple of things outside src can't be tested any more. "go test" will be fixed and these tests will be re-enabled. They're noisy for now. Fixes #284. R=rsc CC=golang-dev https://golang.org/cl/5598049
37 lines
510 B
Makefile
37 lines
510 B
Makefile
# 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.
|
|
|
|
include ../../Make.inc
|
|
O:=$(HOST_O)
|
|
|
|
TARG=5g
|
|
|
|
HFILES=\
|
|
../gc/go.h\
|
|
../5l/5.out.h\
|
|
gg.h\
|
|
opt.h\
|
|
|
|
OFILES=\
|
|
../5l/enam.$O\
|
|
cgen.$O\
|
|
cgen64.$O\
|
|
cplx.$O\
|
|
galign.$O\
|
|
ggen.$O\
|
|
gobj.$O\
|
|
gsubr.$O\
|
|
list.$O\
|
|
peep.$O\
|
|
pgen.$O\
|
|
reg.$O\
|
|
|
|
LIB=\
|
|
../gc/gc.a\
|
|
|
|
include ../../Make.ctool
|
|
|
|
%.$O: ../gc/%.c
|
|
$(HOST_CC) $(HOST_CFLAGS) -c -I. -o $@ ../gc/$*.c
|