2010-12-03 05:34:57 +01:00
|
|
|
# Makefile.am -- Go library Makefile.
|
|
|
|
|
2011-01-14 19:46:42 +01:00
|
|
|
# Copyright 2009 The Go Authors. All rights reserved.
|
2010-12-03 05:34:57 +01:00
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
# Process this file with autoreconf to produce Makefile.in.
|
|
|
|
|
|
|
|
# Go support.
|
|
|
|
SUFFIXES = .c .go .gox .o .obj .lo .a
|
|
|
|
|
|
|
|
if LIBGO_IS_RTEMS
|
|
|
|
subdirs = testsuite
|
|
|
|
endif
|
|
|
|
|
|
|
|
SUBDIRS = ${subdirs}
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
MAINT_CHARSET = latin1
|
|
|
|
|
|
|
|
mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
|
|
|
|
PWD_COMMAND = $${PWDCMD-pwd}
|
|
|
|
STAMP = echo timestamp >
|
|
|
|
|
|
|
|
toolexecdir = $(glibgo_toolexecdir)
|
|
|
|
toolexeclibdir = $(glibgo_toolexeclibdir)
|
2012-02-14 20:40:09 +01:00
|
|
|
toolexeclibgodir = $(nover_glibgo_toolexeclibdir)/go/$(gcc_version)/$(target_alias)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
LIBFFI = @LIBFFI@
|
|
|
|
LIBFFIINCS = @LIBFFIINCS@
|
|
|
|
|
2014-05-29 22:22:27 +02:00
|
|
|
LIBATOMIC = @LIBATOMIC@
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
WARN_CFLAGS = $(WARN_FLAGS) $(WERROR)
|
|
|
|
|
|
|
|
# -I/-D flags to pass when compiling.
|
2010-12-03 22:27:06 +01:00
|
|
|
AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I ./config -I ../config
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
AM_CFLAGS = -fexceptions -fnon-call-exceptions -fplan9-extensions \
|
|
|
|
$(SPLIT_STACK) $(WARN_CFLAGS) \
|
2011-12-20 19:14:30 +01:00
|
|
|
$(STRINGOPS_FLAG) $(OSCFLAGS) \
|
2012-09-28 16:48:30 +02:00
|
|
|
-I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \
|
|
|
|
-I $(MULTIBUILDTOP)../../gcc/include
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
if USING_SPLIT_STACK
|
|
|
|
AM_LDFLAGS = -XCClinker $(SPLIT_STACK)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Multilib support.
|
|
|
|
MAKEOVERRIDES=
|
|
|
|
|
|
|
|
# Work around what appears to be a GNU make handling MAKEFLAGS
|
|
|
|
# values defined in terms of make variables, as is the case for CC and
|
|
|
|
# friends when we are called from the top level Makefile.
|
|
|
|
AM_MAKEFLAGS = \
|
|
|
|
"AR_FLAGS=$(AR_FLAGS)" \
|
|
|
|
"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
|
|
|
|
"CC_FOR_TARGET=$(CC_FOR_TARGET)" \
|
|
|
|
"CFLAGS=$(CFLAGS)" \
|
|
|
|
"CXXFLAGS=$(CXXFLAGS)" \
|
|
|
|
"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
|
|
|
|
"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
|
|
|
|
"GOC_FOR_TARGET=$(GOC_FOR_TARGET)" \
|
|
|
|
"GOC=$(GOC)" \
|
|
|
|
"GOCFLAGS=$(GOCFLAGS)" \
|
|
|
|
"INSTALL=$(INSTALL)" \
|
|
|
|
"INSTALL_DATA=$(INSTALL_DATA)" \
|
|
|
|
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
|
|
|
|
"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
|
|
|
|
"LDFLAGS=$(LDFLAGS)" \
|
|
|
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
|
|
|
"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
|
|
|
|
"MAKE=$(MAKE)" \
|
|
|
|
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
|
|
|
|
"PICFLAG=$(PICFLAG)" \
|
|
|
|
"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
|
|
|
|
"SHELL=$(SHELL)" \
|
|
|
|
"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
|
|
|
|
"exec_prefix=$(exec_prefix)" \
|
|
|
|
"infodir=$(infodir)" \
|
|
|
|
"libdir=$(libdir)" \
|
|
|
|
"includedir=$(includedir)" \
|
|
|
|
"prefix=$(prefix)" \
|
|
|
|
"tooldir=$(tooldir)" \
|
|
|
|
"gxx_include_dir=$(gxx_include_dir)" \
|
|
|
|
"AR=$(AR)" \
|
|
|
|
"AS=$(AS)" \
|
|
|
|
"LD=$(LD)" \
|
|
|
|
"RANLIB=$(RANLIB)" \
|
|
|
|
"NM=$(NM)" \
|
|
|
|
"NM_FOR_BUILD=$(NM_FOR_BUILD)" \
|
|
|
|
"NM_FOR_TARGET=$(NM_FOR_TARGET)" \
|
|
|
|
"DESTDIR=$(DESTDIR)" \
|
|
|
|
"WERROR=$(WERROR)"
|
|
|
|
|
|
|
|
# Subdir rules rely on $(FLAGS_TO_PASS)
|
|
|
|
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
|
|
|
|
|
|
|
|
toolexeclib_LTLIBRARIES = libgo.la
|
|
|
|
toolexeclib_LIBRARIES = libgobegin.a
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgo_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
bufio.gox \
|
|
|
|
bytes.gox \
|
2011-03-17 00:05:44 +01:00
|
|
|
crypto.gox \
|
2013-11-06 20:49:01 +01:00
|
|
|
encoding.gox \
|
2011-12-03 03:17:34 +01:00
|
|
|
errors.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
expvar.gox \
|
|
|
|
flag.gox \
|
|
|
|
fmt.gox \
|
|
|
|
hash.gox \
|
|
|
|
html.gox \
|
|
|
|
image.gox \
|
|
|
|
io.gox \
|
|
|
|
log.gox \
|
|
|
|
math.gox \
|
|
|
|
mime.gox \
|
|
|
|
net.gox \
|
|
|
|
os.gox \
|
|
|
|
path.gox \
|
|
|
|
reflect.gox \
|
|
|
|
regexp.gox \
|
|
|
|
runtime.gox \
|
|
|
|
sort.gox \
|
|
|
|
strconv.gox \
|
|
|
|
strings.gox \
|
|
|
|
sync.gox \
|
|
|
|
syscall.gox \
|
|
|
|
testing.gox \
|
|
|
|
time.gox \
|
2012-02-01 20:26:59 +01:00
|
|
|
unicode.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoarchivedir = $(toolexeclibgodir)/archive
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoarchive_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
archive/tar.gox \
|
|
|
|
archive/zip.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgocompressdir = $(toolexeclibgodir)/compress
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgocompress_DATA = \
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/bzip2.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
compress/flate.gox \
|
|
|
|
compress/gzip.gox \
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/lzw.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
compress/zlib.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgocontainerdir = $(toolexeclibgodir)/container
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgocontainer_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
container/heap.gox \
|
|
|
|
container/list.gox \
|
2011-10-27 01:57:58 +02:00
|
|
|
container/ring.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgocryptodir = $(toolexeclibgodir)/crypto
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgocrypto_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/aes.gox \
|
2011-01-21 19:19:03 +01:00
|
|
|
crypto/cipher.gox \
|
2011-04-07 19:09:10 +02:00
|
|
|
crypto/des.gox \
|
2011-03-17 00:05:44 +01:00
|
|
|
crypto/dsa.gox \
|
2011-03-25 00:46:17 +01:00
|
|
|
crypto/ecdsa.gox \
|
2011-01-21 19:19:03 +01:00
|
|
|
crypto/elliptic.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/hmac.gox \
|
|
|
|
crypto/md5.gox \
|
|
|
|
crypto/rand.gox \
|
|
|
|
crypto/rc4.gox \
|
|
|
|
crypto/rsa.gox \
|
|
|
|
crypto/sha1.gox \
|
|
|
|
crypto/sha256.gox \
|
|
|
|
crypto/sha512.gox \
|
|
|
|
crypto/subtle.gox \
|
|
|
|
crypto/tls.gox \
|
2012-02-01 20:26:59 +01:00
|
|
|
crypto/x509.gox
|
2011-01-21 19:19:03 +01:00
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
toolexeclibgocryptox509dir = $(toolexeclibgocryptodir)/x509
|
|
|
|
|
|
|
|
toolexeclibgocryptox509_DATA = \
|
|
|
|
crypto/x509/pkix.gox
|
|
|
|
|
2012-01-25 22:54:22 +01:00
|
|
|
toolexeclibgodatabasedir = $(toolexeclibgodir)/database
|
|
|
|
|
|
|
|
toolexeclibgodatabase_DATA = \
|
|
|
|
database/sql.gox
|
|
|
|
|
|
|
|
toolexeclibgodatabasesqldir = $(toolexeclibgodatabasedir)/sql
|
|
|
|
|
|
|
|
toolexeclibgodatabasesql_DATA = \
|
|
|
|
database/sql/driver.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgodebugdir = $(toolexeclibgodir)/debug
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgodebug_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/dwarf.gox \
|
|
|
|
debug/elf.gox \
|
2014-06-05 01:15:33 +02:00
|
|
|
debug/goobj.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/gosym.gox \
|
|
|
|
debug/macho.gox \
|
2014-06-07 00:37:27 +02:00
|
|
|
debug/pe.gox \
|
|
|
|
debug/plan9obj.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoencodingdir = $(toolexeclibgodir)/encoding
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoencoding_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/ascii85.gox \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/asn1.gox \
|
2011-01-21 19:19:03 +01:00
|
|
|
encoding/base32.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/base64.gox \
|
|
|
|
encoding/binary.gox \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/csv.gox \
|
|
|
|
encoding/gob.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/hex.gox \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/json.gox \
|
|
|
|
encoding/pem.gox \
|
|
|
|
encoding/xml.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoexpdir = $(toolexeclibgodir)/exp
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoexp_DATA = \
|
2012-01-25 21:56:26 +01:00
|
|
|
exp/proxy.gox \
|
2013-07-16 08:54:42 +02:00
|
|
|
exp/terminal.gox
|
2012-10-23 06:31:11 +02:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgogodir = $(toolexeclibgodir)/go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgogo_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/ast.gox \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/build.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/doc.gox \
|
2012-12-13 00:13:29 +01:00
|
|
|
go/format.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/parser.gox \
|
|
|
|
go/printer.gox \
|
|
|
|
go/scanner.gox \
|
2013-07-16 08:54:42 +02:00
|
|
|
go/token.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgohashdir = $(toolexeclibgodir)/hash
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgohash_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
hash/adler32.gox \
|
|
|
|
hash/crc32.gox \
|
2011-03-25 00:46:17 +01:00
|
|
|
hash/crc64.gox \
|
|
|
|
hash/fnv.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
toolexeclibgohtmldir = $(toolexeclibgodir)/html
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
toolexeclibgohtml_DATA = \
|
|
|
|
html/template.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoimagedir = $(toolexeclibgodir)/image
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoimage_DATA = \
|
2011-10-27 01:57:58 +02:00
|
|
|
image/color.gox \
|
2011-09-16 17:47:21 +02:00
|
|
|
image/draw.gox \
|
2011-05-20 02:18:15 +02:00
|
|
|
image/gif.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
image/jpeg.gox \
|
2012-02-09 09:19:58 +01:00
|
|
|
image/png.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
toolexeclibgoimagecolordir = $(toolexeclibgoimagedir)/color
|
|
|
|
|
|
|
|
toolexeclibgoimagecolor_DATA = \
|
|
|
|
image/color/palette.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoindexdir = $(toolexeclibgodir)/index
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoindex_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
index/suffixarray.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoiodir = $(toolexeclibgodir)/io
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoio_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
io/ioutil.gox
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
toolexeclibgologdir = $(toolexeclibgodir)/log
|
|
|
|
|
|
|
|
toolexeclibgolog_DATA = \
|
|
|
|
log/syslog.gox
|
|
|
|
|
|
|
|
toolexeclibgomathdir = $(toolexeclibgodir)/math
|
|
|
|
|
|
|
|
toolexeclibgomath_DATA = \
|
|
|
|
math/big.gox \
|
|
|
|
math/cmplx.gox \
|
|
|
|
math/rand.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgomimedir = $(toolexeclibgodir)/mime
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgomime_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
mime/multipart.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgonetdir = $(toolexeclibgodir)/net
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgonet_DATA = \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http.gox \
|
|
|
|
net/mail.gox \
|
|
|
|
net/rpc.gox \
|
|
|
|
net/smtp.gox \
|
|
|
|
net/textproto.gox \
|
|
|
|
net/url.gox
|
|
|
|
|
|
|
|
toolexeclibgonethttpdir = $(toolexeclibgonetdir)/http
|
|
|
|
|
|
|
|
toolexeclibgonethttp_DATA = \
|
|
|
|
net/http/cgi.gox \
|
2013-07-16 08:54:42 +02:00
|
|
|
net/http/cookiejar.gox \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http/fcgi.gox \
|
|
|
|
net/http/httptest.gox \
|
|
|
|
net/http/httputil.gox \
|
|
|
|
net/http/pprof.gox
|
|
|
|
|
|
|
|
toolexeclibgonetrpcdir = $(toolexeclibgonetdir)/rpc
|
|
|
|
|
|
|
|
toolexeclibgonetrpc_DATA = \
|
|
|
|
net/rpc/jsonrpc.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
toolexeclibgoolddir = $(toolexeclibgodir)/old
|
|
|
|
|
|
|
|
toolexeclibgoold_DATA = \
|
2011-10-27 01:57:58 +02:00
|
|
|
old/regexp.gox \
|
2011-09-16 17:47:21 +02:00
|
|
|
old/template.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoosdir = $(toolexeclibgodir)/os
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoos_DATA = \
|
2011-12-07 02:11:29 +01:00
|
|
|
os/exec.gox \
|
2012-03-02 17:38:43 +01:00
|
|
|
os/signal.gox \
|
2012-02-09 09:19:58 +01:00
|
|
|
os/user.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-25 00:46:17 +01:00
|
|
|
toolexeclibgopathdir = $(toolexeclibgodir)/path
|
|
|
|
|
|
|
|
toolexeclibgopath_DATA = \
|
|
|
|
path/filepath.gox
|
|
|
|
|
2011-10-27 01:57:58 +02:00
|
|
|
toolexeclibgoregexpdir = $(toolexeclibgodir)/regexp
|
|
|
|
|
|
|
|
toolexeclibgoregexp_DATA = \
|
|
|
|
regexp/syntax.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgoruntime_DATA = \
|
2011-01-21 19:19:03 +01:00
|
|
|
runtime/debug.gox \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/pprof.gox
|
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
toolexeclibgosyncdir = $(toolexeclibgodir)/sync
|
|
|
|
|
|
|
|
toolexeclibgosync_DATA = \
|
|
|
|
sync/atomic.gox
|
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgotestingdir = $(toolexeclibgodir)/testing
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2010-12-07 15:18:35 +01:00
|
|
|
toolexeclibgotesting_DATA = \
|
2010-12-03 05:34:57 +01:00
|
|
|
testing/iotest.gox \
|
2012-03-02 17:38:43 +01:00
|
|
|
testing/quick.gox
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
toolexeclibgotextdir = $(toolexeclibgodir)/text
|
|
|
|
|
|
|
|
toolexeclibgotext_DATA = \
|
|
|
|
text/scanner.gox \
|
|
|
|
text/tabwriter.gox \
|
|
|
|
text/template.gox
|
|
|
|
|
|
|
|
toolexeclibgotexttemplatedir = $(toolexeclibgotextdir)/template
|
|
|
|
|
|
|
|
toolexeclibgotexttemplate_DATA = \
|
|
|
|
text/template/parse.gox
|
|
|
|
|
|
|
|
toolexeclibgounicodedir = $(toolexeclibgodir)/unicode
|
|
|
|
|
|
|
|
toolexeclibgounicode_DATA = \
|
|
|
|
unicode/utf16.gox \
|
|
|
|
unicode/utf8.gox
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
if HAVE_SYS_MMAN_H
|
|
|
|
runtime_mem_file = runtime/mem.c
|
|
|
|
else
|
|
|
|
runtime_mem_file = runtime/mem_posix_memalign.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
if LIBGO_IS_RTEMS
|
|
|
|
rtems_task_variable_add_file = runtime/rtems-task-variable-add.c
|
|
|
|
else
|
|
|
|
rtems_task_variable_add_file =
|
|
|
|
endif
|
|
|
|
|
2011-11-22 21:24:44 +01:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
runtime_lock_files = runtime/lock_futex.c runtime/thread-linux.c
|
|
|
|
else
|
|
|
|
runtime_lock_files = runtime/lock_sema.c runtime/thread-sema.c
|
|
|
|
endif
|
|
|
|
|
2012-08-07 06:42:49 +02:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
runtime_getncpu_file = runtime/getncpu-linux.c
|
|
|
|
else
|
|
|
|
if LIBGO_IS_DARWIN
|
|
|
|
runtime_getncpu_file = runtime/getncpu-bsd.c
|
|
|
|
else
|
|
|
|
if LIBGO_IS_IRIX
|
|
|
|
runtime_getncpu_file = runtime/getncpu-irix.c
|
|
|
|
else
|
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
runtime_getncpu_file = runtime/getncpu-solaris.c
|
|
|
|
else
|
|
|
|
if LIBGO_IS_FREEBSD
|
|
|
|
runtime_getncpu_file = runtime/getncpu-bsd.c
|
|
|
|
else
|
|
|
|
if LIBGO_IS_NETBSD
|
|
|
|
runtime_getncpu_file = runtime/getncpu-bsd.c
|
|
|
|
else
|
|
|
|
runtime_getncpu_file = runtime/getncpu-none.c
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-07-16 08:54:42 +02:00
|
|
|
if LIBGO_IS_LINUX
|
2013-11-14 21:15:04 +01:00
|
|
|
runtime_netpoll_files = runtime/netpoll_epoll.c
|
2013-07-16 08:54:42 +02:00
|
|
|
else
|
2013-11-14 21:15:04 +01:00
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
runtime_netpoll_files = runtime/netpoll_select.c
|
2013-07-16 08:54:42 +02:00
|
|
|
else
|
2013-11-14 21:15:04 +01:00
|
|
|
runtime_netpoll_files = runtime/netpoll_kqueue.c
|
2013-07-16 08:54:42 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime_files = \
|
|
|
|
runtime/go-append.c \
|
|
|
|
runtime/go-assert.c \
|
|
|
|
runtime/go-assert-interface.c \
|
|
|
|
runtime/go-byte-array-to-string.c \
|
|
|
|
runtime/go-breakpoint.c \
|
|
|
|
runtime/go-caller.c \
|
2012-03-02 17:38:43 +01:00
|
|
|
runtime/go-callers.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-can-convert-interface.c \
|
2013-10-10 00:31:15 +02:00
|
|
|
runtime/go-cdiv.c \
|
2011-01-11 19:59:30 +01:00
|
|
|
runtime/go-cgo.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-check-interface.c \
|
|
|
|
runtime/go-construct-map.c \
|
|
|
|
runtime/go-convert-interface.c \
|
2010-12-17 07:33:41 +01:00
|
|
|
runtime/go-copy.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-defer.c \
|
|
|
|
runtime/go-deferred-recover.c \
|
|
|
|
runtime/go-eface-compare.c \
|
|
|
|
runtime/go-eface-val-compare.c \
|
2012-11-29 19:11:17 +01:00
|
|
|
runtime/go-fieldtrack.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-getgoroot.c \
|
|
|
|
runtime/go-int-array-to-string.c \
|
|
|
|
runtime/go-int-to-string.c \
|
|
|
|
runtime/go-interface-compare.c \
|
2011-02-22 03:52:55 +01:00
|
|
|
runtime/go-interface-eface-compare.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-interface-val-compare.c \
|
2011-06-14 07:53:10 +02:00
|
|
|
runtime/go-make-slice.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-map-delete.c \
|
|
|
|
runtime/go-map-index.c \
|
|
|
|
runtime/go-map-len.c \
|
|
|
|
runtime/go-map-range.c \
|
2012-02-08 23:35:30 +01:00
|
|
|
runtime/go-matherr.c \
|
2012-11-06 19:12:45 +01:00
|
|
|
runtime/go-memcmp.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-nanotime.c \
|
2011-12-13 20:16:27 +01:00
|
|
|
runtime/go-now.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-new-map.c \
|
|
|
|
runtime/go-new.c \
|
2012-01-26 21:24:01 +01:00
|
|
|
runtime/go-nosys.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-panic.c \
|
|
|
|
runtime/go-print.c \
|
|
|
|
runtime/go-recover.c \
|
|
|
|
runtime/go-reflect-call.c \
|
|
|
|
runtime/go-reflect-map.c \
|
|
|
|
runtime/go-rune.c \
|
|
|
|
runtime/go-runtime-error.c \
|
2011-05-20 02:18:15 +02:00
|
|
|
runtime/go-setenv.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-signal.c \
|
|
|
|
runtime/go-strcmp.c \
|
|
|
|
runtime/go-string-to-byte-array.c \
|
|
|
|
runtime/go-string-to-int-array.c \
|
|
|
|
runtime/go-strplus.c \
|
|
|
|
runtime/go-strslice.c \
|
2012-05-17 07:30:25 +02:00
|
|
|
runtime/go-traceback.c \
|
2012-01-06 22:47:49 +01:00
|
|
|
runtime/go-type-complex.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-type-eface.c \
|
|
|
|
runtime/go-type-error.c \
|
2012-01-06 22:47:49 +01:00
|
|
|
runtime/go-type-float.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/go-type-identity.c \
|
|
|
|
runtime/go-type-interface.c \
|
|
|
|
runtime/go-type-string.c \
|
|
|
|
runtime/go-typedesc-equal.c \
|
|
|
|
runtime/go-typestring.c \
|
|
|
|
runtime/go-unsafe-new.c \
|
|
|
|
runtime/go-unsafe-newarray.c \
|
|
|
|
runtime/go-unsafe-pointer.c \
|
|
|
|
runtime/go-unwind.c \
|
2013-11-24 03:38:28 +01:00
|
|
|
runtime/go-varargs.c \
|
2011-12-01 09:06:16 +01:00
|
|
|
runtime/chan.c \
|
2011-03-27 21:14:55 +02:00
|
|
|
runtime/cpuprof.c \
|
2012-12-22 02:15:33 +01:00
|
|
|
runtime/env_posix.c \
|
2012-10-23 06:31:11 +02:00
|
|
|
runtime/lfstack.c \
|
2011-11-22 21:24:44 +01:00
|
|
|
$(runtime_lock_files) \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/mcache.c \
|
|
|
|
runtime/mcentral.c \
|
|
|
|
$(runtime_mem_file) \
|
|
|
|
runtime/mfixalloc.c \
|
|
|
|
runtime/mgc0.c \
|
|
|
|
runtime/mheap.c \
|
|
|
|
runtime/msize.c \
|
2013-07-16 08:54:42 +02:00
|
|
|
$(runtime_netpoll_files) \
|
2012-10-23 06:31:11 +02:00
|
|
|
runtime/panic.c \
|
|
|
|
runtime/parfor.c \
|
2012-05-24 22:44:34 +02:00
|
|
|
runtime/print.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/proc.c \
|
2011-11-14 23:26:45 +01:00
|
|
|
runtime/runtime.c \
|
2012-03-02 17:38:43 +01:00
|
|
|
runtime/signal_unix.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/thread.c \
|
2011-10-27 01:57:58 +02:00
|
|
|
runtime/yield.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
$(rtems_task_variable_add_file) \
|
|
|
|
iface.c \
|
|
|
|
malloc.c \
|
|
|
|
map.c \
|
|
|
|
mprof.c \
|
2013-11-14 21:15:04 +01:00
|
|
|
netpoll.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
reflect.c \
|
2011-11-28 06:45:49 +01:00
|
|
|
runtime1.c \
|
|
|
|
sema.c \
|
2010-12-03 05:34:57 +01:00
|
|
|
sigqueue.c \
|
2011-12-07 02:11:29 +01:00
|
|
|
string.c \
|
2012-08-07 06:42:49 +02:00
|
|
|
time.c \
|
|
|
|
$(runtime_getncpu_file)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
goc2c.$(OBJEXT): runtime/goc2c.c
|
|
|
|
$(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) $<
|
|
|
|
|
|
|
|
goc2c: goc2c.$(OBJEXT)
|
|
|
|
$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $<
|
|
|
|
|
|
|
|
malloc.c: $(srcdir)/runtime/malloc.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c $< > $@.tmp
|
2010-12-03 05:34:57 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
|
|
|
mprof.c: $(srcdir)/runtime/mprof.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c $< > $@.tmp
|
2010-12-03 05:34:57 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
2013-07-16 08:54:42 +02:00
|
|
|
netpoll.c: $(srcdir)/runtime/netpoll.goc goc2c
|
|
|
|
./goc2c $< > $@.tmp
|
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
reflect.c: $(srcdir)/runtime/reflect.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c $< > $@.tmp
|
2010-12-03 05:34:57 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
2011-11-28 06:45:49 +01:00
|
|
|
runtime1.c: $(srcdir)/runtime/runtime1.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c $< > $@.tmp
|
2011-11-28 06:45:49 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
|
|
|
sema.c: $(srcdir)/runtime/sema.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c $< > $@.tmp
|
2011-11-28 06:45:49 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
sigqueue.c: $(srcdir)/runtime/sigqueue.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c --go-pkgpath os_signal $< > $@.tmp
|
2010-12-03 05:34:57 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
time.c: $(srcdir)/runtime/time.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c $< > $@.tmp
|
2011-12-07 02:11:29 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
%.c: $(srcdir)/runtime/%.goc goc2c
|
2012-10-31 21:49:53 +01:00
|
|
|
./goc2c $< > $@.tmp
|
2010-12-03 05:34:57 +01:00
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
|
|
|
go_bufio_files = \
|
2013-07-16 08:54:42 +02:00
|
|
|
go/bufio/bufio.go \
|
|
|
|
go/bufio/scan.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_bytes_files = \
|
|
|
|
go/bytes/buffer.go \
|
|
|
|
go/bytes/bytes.go \
|
2012-03-02 17:38:43 +01:00
|
|
|
go/bytes/bytes_decl.go \
|
|
|
|
go/bytes/reader.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_bytes_c_files = \
|
|
|
|
go/bytes/indexbyte.c
|
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
go_crypto_files = \
|
|
|
|
go/crypto/crypto.go
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
go_encoding_files = \
|
|
|
|
go/encoding/encoding.go
|
|
|
|
|
2011-12-03 03:17:34 +01:00
|
|
|
go_errors_files = \
|
|
|
|
go/errors/errors.go
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_expvar_files = \
|
|
|
|
go/expvar/expvar.go
|
|
|
|
|
|
|
|
go_flag_files = \
|
|
|
|
go/flag/flag.go
|
|
|
|
|
|
|
|
go_fmt_files = \
|
|
|
|
go/fmt/doc.go \
|
|
|
|
go/fmt/format.go \
|
|
|
|
go/fmt/print.go \
|
|
|
|
go/fmt/scan.go
|
|
|
|
|
|
|
|
go_hash_files = \
|
|
|
|
go/hash/hash.go
|
|
|
|
|
|
|
|
go_html_files = \
|
|
|
|
go/html/entity.go \
|
2012-02-01 20:26:59 +01:00
|
|
|
go/html/escape.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_image_files = \
|
|
|
|
go/image/format.go \
|
|
|
|
go/image/geom.go \
|
|
|
|
go/image/image.go \
|
2012-01-13 06:11:45 +01:00
|
|
|
go/image/names.go \
|
|
|
|
go/image/ycbcr.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_io_files = \
|
|
|
|
go/io/multi.go \
|
|
|
|
go/io/io.go \
|
|
|
|
go/io/pipe.go
|
|
|
|
|
|
|
|
go_log_files = \
|
|
|
|
go/log/log.go
|
|
|
|
|
|
|
|
go_math_files = \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/math/abs.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/math/acosh.go \
|
|
|
|
go/math/asin.go \
|
|
|
|
go/math/asinh.go \
|
|
|
|
go/math/atan.go \
|
|
|
|
go/math/atanh.go \
|
|
|
|
go/math/atan2.go \
|
|
|
|
go/math/bits.go \
|
|
|
|
go/math/cbrt.go \
|
|
|
|
go/math/const.go \
|
|
|
|
go/math/copysign.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/math/dim.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/math/erf.go \
|
|
|
|
go/math/exp.go \
|
|
|
|
go/math/expm1.go \
|
|
|
|
go/math/floor.go \
|
|
|
|
go/math/frexp.go \
|
|
|
|
go/math/gamma.go \
|
|
|
|
go/math/hypot.go \
|
|
|
|
go/math/j0.go \
|
|
|
|
go/math/j1.go \
|
|
|
|
go/math/jn.go \
|
|
|
|
go/math/ldexp.go \
|
|
|
|
go/math/lgamma.go \
|
|
|
|
go/math/log.go \
|
|
|
|
go/math/log1p.go \
|
|
|
|
go/math/log10.go \
|
|
|
|
go/math/logb.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/math/mod.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/math/modf.go \
|
|
|
|
go/math/nextafter.go \
|
|
|
|
go/math/pow.go \
|
|
|
|
go/math/pow10.go \
|
|
|
|
go/math/remainder.go \
|
|
|
|
go/math/signbit.go \
|
|
|
|
go/math/sin.go \
|
|
|
|
go/math/sincos.go \
|
|
|
|
go/math/sinh.go \
|
|
|
|
go/math/sqrt.go \
|
|
|
|
go/math/tan.go \
|
|
|
|
go/math/tanh.go \
|
|
|
|
go/math/unsafe.go
|
|
|
|
|
|
|
|
go_mime_files = \
|
|
|
|
go/mime/grammar.go \
|
|
|
|
go/mime/mediatype.go \
|
2011-12-13 00:40:51 +01:00
|
|
|
go/mime/type.go \
|
|
|
|
go/mime/type_unix.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-05-20 02:18:15 +02:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_net_cgo_file = go/net/cgo_linux.go
|
|
|
|
go_net_sock_file = go/net/sock_linux.go
|
2012-01-25 21:56:26 +01:00
|
|
|
go_net_sockopt_file = go/net/sockopt_linux.go
|
2012-10-23 06:31:11 +02:00
|
|
|
go_net_sockoptip_file = go/net/sockoptip_linux.go go/net/sockoptip_posix.go
|
2011-05-20 02:18:15 +02:00
|
|
|
else
|
2011-05-24 23:43:12 +02:00
|
|
|
if LIBGO_IS_IRIX
|
|
|
|
go_net_cgo_file = go/net/cgo_linux.go
|
|
|
|
go_net_sock_file = go/net/sock_linux.go
|
2012-01-25 21:56:26 +01:00
|
|
|
go_net_sockopt_file = go/net/sockopt_linux.go
|
2012-10-23 06:31:11 +02:00
|
|
|
go_net_sockoptip_file = go/net/sockoptip_linux.go go/net/sockoptip_posix.go
|
2011-05-24 23:43:12 +02:00
|
|
|
else
|
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
go_net_cgo_file = go/net/cgo_linux.go
|
2012-04-25 06:26:12 +02:00
|
|
|
go_net_sock_file = go/net/sock_solaris.go
|
|
|
|
go_net_sockopt_file = go/net/sockopt_bsd.go
|
2012-10-25 20:26:34 +02:00
|
|
|
go_net_sockoptip_file = go/net/sockoptip_bsd.go go/net/sockoptip_posix.go
|
2011-05-24 23:43:12 +02:00
|
|
|
else
|
2012-03-06 18:57:23 +01:00
|
|
|
if LIBGO_IS_FREEBSD
|
2011-05-20 02:18:15 +02:00
|
|
|
go_net_cgo_file = go/net/cgo_bsd.go
|
|
|
|
go_net_sock_file = go/net/sock_bsd.go
|
2012-01-25 21:56:26 +01:00
|
|
|
go_net_sockopt_file = go/net/sockopt_bsd.go
|
2012-10-23 06:31:11 +02:00
|
|
|
go_net_sockoptip_file = go/net/sockoptip_bsd.go go/net/sockoptip_posix.go
|
|
|
|
else
|
|
|
|
if LIBGO_IS_NETBSD
|
|
|
|
go_net_cgo_file = go/net/cgo_netbsd.go
|
|
|
|
go_net_sock_file = go/net/sock_bsd.go
|
|
|
|
go_net_sockopt_file = go/net/sockopt_bsd.go
|
|
|
|
go_net_sockoptip_file = go/net/sockoptip_bsd.go go/net/sockoptip_posix.go
|
2012-03-06 18:57:23 +01:00
|
|
|
else
|
|
|
|
go_net_cgo_file = go/net/cgo_bsd.go
|
|
|
|
go_net_sock_file = go/net/sock_bsd.go
|
|
|
|
go_net_sockopt_file = go/net/sockopt_bsd.go
|
2012-10-23 06:31:11 +02:00
|
|
|
go_net_sockoptip_file = go/net/sockoptip_bsd.go go/net/sockoptip_posix.go
|
|
|
|
endif
|
2012-03-06 18:57:23 +01:00
|
|
|
endif
|
2011-05-20 02:18:15 +02:00
|
|
|
endif
|
2011-05-24 23:43:12 +02:00
|
|
|
endif
|
|
|
|
endif
|
2011-05-20 02:18:15 +02:00
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_net_sendfile_file = go/net/sendfile_linux.go
|
|
|
|
else
|
2012-10-23 06:31:11 +02:00
|
|
|
if LIBGO_IS_FREEBSD
|
|
|
|
go_net_sendfile_file = go/net/sendfile_freebsd.go
|
|
|
|
else
|
2013-11-06 20:49:01 +01:00
|
|
|
if LIBGO_IS_DRAGONFLY
|
|
|
|
go_net_sendfile_file = go/net/sendfile_dragonfly.go
|
|
|
|
else
|
2011-09-16 17:47:21 +02:00
|
|
|
go_net_sendfile_file = go/net/sendfile_stub.go
|
|
|
|
endif
|
2012-10-23 06:31:11 +02:00
|
|
|
endif
|
2013-11-06 20:49:01 +01:00
|
|
|
endif
|
2011-09-16 17:47:21 +02:00
|
|
|
|
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_net_interface_file = go/net/interface_linux.go
|
|
|
|
else
|
2012-01-13 06:11:45 +01:00
|
|
|
if LIBGO_IS_NETBSD
|
|
|
|
go_net_interface_file = go/net/interface_netbsd.go
|
|
|
|
else
|
2013-11-06 20:49:01 +01:00
|
|
|
if LIBGO_IS_DRAGONFLY
|
|
|
|
go_net_interface_file = go/net/interface_dragonfly.go
|
|
|
|
else
|
2011-09-16 17:47:21 +02:00
|
|
|
go_net_interface_file = go/net/interface_stub.go
|
|
|
|
endif
|
2012-01-13 06:11:45 +01:00
|
|
|
endif
|
2013-11-06 20:49:01 +01:00
|
|
|
endif
|
2011-09-16 17:47:21 +02:00
|
|
|
|
2013-01-29 21:52:43 +01:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_net_cloexec_file = go/net/sock_cloexec.go
|
|
|
|
else
|
|
|
|
go_net_cloexec_file = go/net/sys_cloexec.go
|
|
|
|
endif
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
if LIBGO_IS_OPENBSD
|
|
|
|
go_net_tcpsockopt_file = go/net/tcpsockopt_openbsd.go
|
2013-07-16 08:54:42 +02:00
|
|
|
else
|
|
|
|
if LIBGO_IS_DARWIN
|
2013-11-06 20:49:01 +01:00
|
|
|
go_net_tcpsockopt_file = go/net/tcpsockopt_darwin.go
|
2013-07-16 08:54:42 +02:00
|
|
|
else
|
2013-11-11 22:25:42 +01:00
|
|
|
if LIBGO_IS_SOLARIS
|
2013-11-14 21:19:51 +01:00
|
|
|
go_net_tcpsockopt_file = go/net/tcpsockopt_darwin.go
|
2013-11-11 22:25:42 +01:00
|
|
|
else
|
2013-11-06 20:49:01 +01:00
|
|
|
go_net_tcpsockopt_file = go/net/tcpsockopt_unix.go
|
2013-07-16 08:54:42 +02:00
|
|
|
endif
|
|
|
|
endif
|
2013-11-11 22:25:42 +01:00
|
|
|
endif
|
2013-07-16 08:54:42 +02:00
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_net_files = \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/net/cgo_unix.go \
|
|
|
|
$(go_net_cgo_file) \
|
2013-01-29 21:52:43 +01:00
|
|
|
$(go_net_cloexec_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/dial.go \
|
|
|
|
go/net/dnsclient.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/net/dnsclient_unix.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/net/dnsconfig_unix.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/dnsmsg.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/net/fd_mutex.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/net/fd_unix.go \
|
|
|
|
go/net/file_unix.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/hosts.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/net/interface.go \
|
|
|
|
$(go_net_interface_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/ip.go \
|
|
|
|
go/net/iprawsock.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/net/iprawsock_posix.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/ipsock.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/net/ipsock_posix.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/net/lookup.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/net/lookup_unix.go \
|
2012-03-06 18:57:23 +01:00
|
|
|
go/net/mac.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/net.go \
|
|
|
|
go/net/parse.go \
|
|
|
|
go/net/pipe.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/net/fd_poll_runtime.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/port.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/net/port_unix.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/net/race0.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
$(go_net_sendfile_file) \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/net/singleflight.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/net/sock_posix.go \
|
2011-05-20 02:18:15 +02:00
|
|
|
$(go_net_sock_file) \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/net/sockopt_posix.go \
|
2012-01-25 21:56:26 +01:00
|
|
|
$(go_net_sockopt_file) \
|
|
|
|
$(go_net_sockoptip_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/tcpsock.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/net/tcpsock_posix.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/net/tcpsockopt_posix.go \
|
|
|
|
$(go_net_tcpsockopt_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/udpsock.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/net/udpsock_posix.go \
|
|
|
|
go/net/unixsock.go \
|
|
|
|
go/net/unixsock_posix.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-02-21 05:17:20 +01:00
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
if LIBGO_IS_386
|
|
|
|
go_os_dir_file = go/os/dir_largefile.go
|
|
|
|
else
|
2011-03-30 23:45:57 +02:00
|
|
|
if LIBGO_IS_SPARC
|
|
|
|
go_os_dir_file = go/os/dir_largefile.go
|
|
|
|
else
|
2011-02-21 05:17:20 +01:00
|
|
|
go_os_dir_file = go/os/dir_regfile.go
|
|
|
|
endif
|
2011-03-30 23:45:57 +02:00
|
|
|
endif
|
2011-02-21 05:17:20 +01:00
|
|
|
else
|
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_os_dir_file = go/os/dir_largefile.go
|
|
|
|
else
|
|
|
|
go_os_dir_file = go/os/dir_regfile.go
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
if LIBGO_IS_DARWIN
|
|
|
|
go_os_getwd_file = go/os/getwd_darwin.go
|
|
|
|
else
|
|
|
|
go_os_getwd_file =
|
|
|
|
endif
|
|
|
|
|
2011-01-28 02:44:55 +01:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_os_sys_file = go/os/sys_linux.go
|
|
|
|
else
|
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
go_os_sys_file = go/os/sys_uname.go
|
|
|
|
else
|
2011-04-01 01:55:21 +02:00
|
|
|
if LIBGO_IS_IRIX
|
|
|
|
go_os_sys_file = go/os/sys_uname.go
|
|
|
|
else
|
2011-01-28 02:44:55 +01:00
|
|
|
if LIBGO_IS_RTEMS
|
|
|
|
go_os_sys_file = go/os/sys_uname.go
|
|
|
|
else
|
|
|
|
go_os_sys_file = go/os/sys_bsd.go
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2011-04-01 01:55:21 +02:00
|
|
|
endif
|
2011-01-28 02:44:55 +01:00
|
|
|
|
2011-12-16 15:45:49 +01:00
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
go_os_stat_file = go/os/stat_solaris.go
|
|
|
|
else
|
2012-11-05 18:36:40 +01:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_os_stat_file = go/os/stat_atim.go
|
|
|
|
else
|
|
|
|
if LIBGO_IS_OPENBSD
|
|
|
|
go_os_stat_file = go/os/stat_atim.go
|
|
|
|
else
|
|
|
|
if LIBGO_IS_DARWIN
|
2013-01-24 19:12:23 +01:00
|
|
|
go_os_stat_file = go/os/stat_atimespec.go
|
2012-11-05 18:36:40 +01:00
|
|
|
else
|
|
|
|
if LIBGO_IS_FREEBSD
|
2013-01-24 19:12:23 +01:00
|
|
|
go_os_stat_file = go/os/stat_atimespec.go
|
2012-11-05 18:36:40 +01:00
|
|
|
else
|
|
|
|
if LIBGO_IS_NETBSD
|
2013-01-24 19:12:23 +01:00
|
|
|
go_os_stat_file = go/os/stat_atimespec.go
|
2012-11-05 18:36:40 +01:00
|
|
|
else
|
2013-11-06 20:49:01 +01:00
|
|
|
if LIBGO_IS_DRAGONFLY
|
|
|
|
go_os_stat_file = go/os/stat_dragonfly.go
|
|
|
|
else
|
2011-12-16 15:45:49 +01:00
|
|
|
go_os_stat_file = go/os/stat.go
|
|
|
|
endif
|
2012-11-05 18:36:40 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2013-11-06 20:49:01 +01:00
|
|
|
endif
|
2011-12-16 15:45:49 +01:00
|
|
|
|
2013-01-29 21:52:43 +01:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
go_os_pipe_file = go/os/pipe_linux.go
|
|
|
|
else
|
|
|
|
go_os_pipe_file = go/os/pipe_bsd.go
|
|
|
|
endif
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_os_files = \
|
2011-02-21 05:17:20 +01:00
|
|
|
$(go_os_dir_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/os/dir.go \
|
2012-01-25 22:54:22 +01:00
|
|
|
go/os/doc.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/os/env.go \
|
|
|
|
go/os/error.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/os/error_unix.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/os/exec.go \
|
2011-04-07 19:09:10 +02:00
|
|
|
go/os/exec_posix.go \
|
2011-03-17 00:05:44 +01:00
|
|
|
go/os/exec_unix.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/os/file.go \
|
2011-04-07 19:09:10 +02:00
|
|
|
go/os/file_posix.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/os/file_unix.go \
|
|
|
|
go/os/getwd.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
$(go_os_getwd_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/os/path.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/os/path_unix.go \
|
2013-01-29 21:52:43 +01:00
|
|
|
$(go_os_pipe_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/os/proc.go \
|
2011-12-16 15:45:49 +01:00
|
|
|
$(go_os_stat_file) \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/os/str.go \
|
2011-01-28 02:44:55 +01:00
|
|
|
$(go_os_sys_file) \
|
2013-07-16 08:54:42 +02:00
|
|
|
go/os/types.go \
|
|
|
|
go/os/types_notwin.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_path_files = \
|
|
|
|
go/path/match.go \
|
2011-03-25 00:46:17 +01:00
|
|
|
go/path/path.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2013-09-27 19:53:46 +02:00
|
|
|
if LIBGO_IS_X86_64
|
|
|
|
go_reflect_makefunc_file = \
|
|
|
|
go/reflect/makefuncgo_amd64.go
|
|
|
|
go_reflect_makefunc_s_file = \
|
|
|
|
go/reflect/makefunc_amd64.S
|
|
|
|
else
|
2013-09-27 23:34:24 +02:00
|
|
|
if LIBGO_IS_386
|
|
|
|
go_reflect_makefunc_file = \
|
|
|
|
go/reflect/makefuncgo_386.go
|
|
|
|
go_reflect_makefunc_s_file = \
|
|
|
|
go/reflect/makefunc_386.S
|
|
|
|
else
|
2013-09-27 19:53:46 +02:00
|
|
|
go_reflect_makefunc_file =
|
|
|
|
go_reflect_makefunc_s_file = \
|
|
|
|
go/reflect/makefunc_dummy.c
|
|
|
|
endif
|
2013-09-27 23:34:24 +02:00
|
|
|
endif
|
2013-09-27 19:53:46 +02:00
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_reflect_files = \
|
|
|
|
go/reflect/deepequal.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/reflect/makefunc.go \
|
2013-09-27 19:53:46 +02:00
|
|
|
$(go_reflect_makefunc_file) \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/reflect/type.go \
|
|
|
|
go/reflect/value.go
|
|
|
|
|
|
|
|
go_regexp_files = \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/regexp/exec.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/regexp/regexp.go
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_net_rpc_files = \
|
|
|
|
go/net/rpc/client.go \
|
|
|
|
go/net/rpc/debug.go \
|
|
|
|
go/net/rpc/server.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_runtime_files = \
|
2012-03-30 23:27:11 +02:00
|
|
|
go/runtime/compiler.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/runtime/debug.go \
|
|
|
|
go/runtime/error.go \
|
|
|
|
go/runtime/extern.go \
|
2011-03-25 00:46:17 +01:00
|
|
|
go/runtime/mem.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/runtime/softfloat64.go \
|
|
|
|
go/runtime/type.go \
|
|
|
|
version.go
|
|
|
|
|
|
|
|
version.go: s-version; @true
|
|
|
|
s-version: Makefile
|
|
|
|
rm -f version.go.tmp
|
|
|
|
echo "package runtime" > version.go.tmp
|
|
|
|
echo 'const defaultGoroot = "$(prefix)"' >> version.go.tmp
|
2014-05-01 02:35:58 +02:00
|
|
|
echo 'const theVersion = "'`$(GOC) --version | sed 1q`'"' >> version.go.tmp
|
2010-12-03 05:34:57 +01:00
|
|
|
echo 'const theGoarch = "'$(GOARCH)'"' >> version.go.tmp
|
|
|
|
echo 'const theGoos = "'$(GOOS)'"' >> version.go.tmp
|
|
|
|
$(SHELL) $(srcdir)/../move-if-change version.go.tmp version.go
|
|
|
|
$(STAMP) $@
|
|
|
|
|
|
|
|
go_sort_files = \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/sort/search.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/sort/sort.go
|
|
|
|
|
|
|
|
go_strconv_files = \
|
|
|
|
go/strconv/atob.go \
|
|
|
|
go/strconv/atof.go \
|
|
|
|
go/strconv/atoi.go \
|
|
|
|
go/strconv/decimal.go \
|
2012-01-13 06:11:45 +01:00
|
|
|
go/strconv/extfloat.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/strconv/ftoa.go \
|
2012-03-30 23:27:11 +02:00
|
|
|
go/strconv/isprint.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/strconv/itoa.go \
|
|
|
|
go/strconv/quote.go
|
|
|
|
|
|
|
|
go_strings_files = \
|
|
|
|
go/strings/reader.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/strings/replace.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/strings/search.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/strings/strings.go \
|
|
|
|
go/strings/strings_decl.go
|
|
|
|
go_strings_c_files = \
|
|
|
|
go/strings/indexbyte.c
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_sync_files = \
|
2011-03-17 00:05:44 +01:00
|
|
|
go/sync/cond.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/sync/mutex.go \
|
|
|
|
go/sync/once.go \
|
2014-06-05 01:15:33 +02:00
|
|
|
go/sync/pool.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/sync/race0.go \
|
2012-03-02 21:01:37 +01:00
|
|
|
go/sync/runtime.go \
|
2011-03-17 00:05:44 +01:00
|
|
|
go/sync/rwmutex.go \
|
|
|
|
go/sync/waitgroup.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-09 23:13:09 +01:00
|
|
|
if LIBGO_IS_SOLARIS
|
2011-12-07 02:11:29 +01:00
|
|
|
go_syslog_file = go/log/syslog/syslog_libc.go
|
2011-04-25 21:36:12 +02:00
|
|
|
else
|
|
|
|
if LIBGO_IS_IRIX
|
2011-12-07 02:11:29 +01:00
|
|
|
go_syslog_file = go/log/syslog/syslog_libc.go
|
2011-03-09 23:13:09 +01:00
|
|
|
else
|
2011-12-07 02:11:29 +01:00
|
|
|
go_syslog_file = go/log/syslog/syslog_unix.go
|
2011-03-09 23:13:09 +01:00
|
|
|
endif
|
2011-04-25 21:36:12 +02:00
|
|
|
endif
|
2011-03-09 23:13:09 +01:00
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_log_syslog_files = \
|
|
|
|
go/log/syslog/syslog.go \
|
2011-03-09 23:13:09 +01:00
|
|
|
$(go_syslog_file)
|
2011-03-11 02:00:15 +01:00
|
|
|
go_syslog_c_files = \
|
2011-12-07 02:11:29 +01:00
|
|
|
go/log/syslog/syslog_c.c
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_testing_files = \
|
2013-07-16 08:54:42 +02:00
|
|
|
go/testing/allocs.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/testing/benchmark.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/testing/cover.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/testing/example.go \
|
2012-01-25 21:56:26 +01:00
|
|
|
go/testing/testing.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_time_files = \
|
|
|
|
go/time/format.go \
|
|
|
|
go/time/sleep.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/time/sys_unix.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/time/tick.go \
|
|
|
|
go/time/time.go \
|
2011-12-13 20:16:27 +01:00
|
|
|
go/time/zoneinfo.go \
|
2012-03-02 21:01:37 +01:00
|
|
|
go/time/zoneinfo_read.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/time/zoneinfo_unix.go
|
|
|
|
|
|
|
|
go_unicode_files = \
|
|
|
|
go/unicode/casetables.go \
|
|
|
|
go/unicode/digit.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/unicode/graphic.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/unicode/letter.go \
|
|
|
|
go/unicode/tables.go
|
|
|
|
|
2012-10-23 06:31:11 +02:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
archive_tar_atim_file = go/archive/tar/stat_atim.go
|
|
|
|
endif
|
|
|
|
if LIBGO_IS_OPENBSD
|
|
|
|
archive_tar_atim_file = go/archive/tar/stat_atim.go
|
|
|
|
endif
|
2012-10-25 20:26:34 +02:00
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
archive_tar_atim_file = go/archive/tar/stat_atim.go
|
|
|
|
endif
|
2012-10-23 06:31:11 +02:00
|
|
|
if LIBGO_IS_DARWIN
|
|
|
|
archive_tar_atim_file = go/archive/tar/stat_atimespec.go
|
|
|
|
endif
|
|
|
|
if LIBGO_IS_FREEBSD
|
|
|
|
archive_tar_atim_file = go/archive/tar/stat_atimespec.go
|
|
|
|
endif
|
|
|
|
if LIBGO_IS_NETBSD
|
|
|
|
archive_tar_atim_file = go/archive/tar/stat_atimespec.go
|
|
|
|
endif
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_archive_tar_files = \
|
|
|
|
go/archive/tar/common.go \
|
|
|
|
go/archive/tar/reader.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/archive/tar/stat_unix.go \
|
|
|
|
go/archive/tar/writer.go \
|
|
|
|
$(archive_tar_atim_file)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_archive_zip_files = \
|
|
|
|
go/archive/zip/reader.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/archive/zip/register.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/archive/zip/struct.go \
|
|
|
|
go/archive/zip/writer.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
go_compress_bzip2_files = \
|
|
|
|
go/compress/bzip2/bit_reader.go \
|
|
|
|
go/compress/bzip2/bzip2.go \
|
|
|
|
go/compress/bzip2/huffman.go \
|
|
|
|
go/compress/bzip2/move_to_front.go
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_compress_flate_files = \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/compress/flate/copy.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/compress/flate/deflate.go \
|
2013-01-29 21:52:43 +01:00
|
|
|
go/compress/flate/fixedhuff.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/compress/flate/huffman_bit_writer.go \
|
|
|
|
go/compress/flate/huffman_code.go \
|
|
|
|
go/compress/flate/inflate.go \
|
|
|
|
go/compress/flate/reverse_bits.go \
|
2012-02-01 20:26:59 +01:00
|
|
|
go/compress/flate/token.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_compress_gzip_files = \
|
|
|
|
go/compress/gzip/gzip.go \
|
|
|
|
go/compress/gzip/gunzip.go
|
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
go_compress_lzw_files = \
|
|
|
|
go/compress/lzw/reader.go \
|
|
|
|
go/compress/lzw/writer.go
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_compress_zlib_files = \
|
|
|
|
go/compress/zlib/reader.go \
|
|
|
|
go/compress/zlib/writer.go
|
|
|
|
|
|
|
|
go_container_heap_files = \
|
|
|
|
go/container/heap/heap.go
|
|
|
|
|
|
|
|
go_container_list_files = \
|
|
|
|
go/container/list/list.go
|
|
|
|
|
|
|
|
go_container_ring_files = \
|
|
|
|
go/container/ring/ring.go
|
|
|
|
|
|
|
|
go_crypto_aes_files = \
|
|
|
|
go/crypto/aes/block.go \
|
|
|
|
go/crypto/aes/cipher.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/crypto/aes/cipher_generic.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/crypto/aes/const.go
|
2011-01-21 19:19:03 +01:00
|
|
|
go_crypto_cipher_files = \
|
|
|
|
go/crypto/cipher/cbc.go \
|
|
|
|
go/crypto/cipher/cfb.go \
|
|
|
|
go/crypto/cipher/cipher.go \
|
|
|
|
go/crypto/cipher/ctr.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/crypto/cipher/gcm.go \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/crypto/cipher/io.go \
|
2014-06-05 01:15:33 +02:00
|
|
|
go/crypto/cipher/ofb.go \
|
|
|
|
go/crypto/cipher/xor.go
|
2011-04-07 19:09:10 +02:00
|
|
|
go_crypto_des_files = \
|
|
|
|
go/crypto/des/block.go \
|
|
|
|
go/crypto/des/cipher.go \
|
|
|
|
go/crypto/des/const.go
|
2011-03-17 00:05:44 +01:00
|
|
|
go_crypto_dsa_files = \
|
|
|
|
go/crypto/dsa/dsa.go
|
2011-03-25 00:46:17 +01:00
|
|
|
go_crypto_ecdsa_files = \
|
|
|
|
go/crypto/ecdsa/ecdsa.go
|
2011-01-21 19:19:03 +01:00
|
|
|
go_crypto_elliptic_files = \
|
2012-01-25 22:54:22 +01:00
|
|
|
go/crypto/elliptic/elliptic.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/crypto/elliptic/p224.go \
|
|
|
|
go/crypto/elliptic/p256.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_crypto_hmac_files = \
|
|
|
|
go/crypto/hmac/hmac.go
|
|
|
|
go_crypto_md5_files = \
|
|
|
|
go/crypto/md5/md5.go \
|
2014-06-07 00:37:27 +02:00
|
|
|
go/crypto/md5/md5block.go \
|
|
|
|
go/crypto/md5/md5block_generic.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_crypto_rand_files = \
|
|
|
|
go/crypto/rand/rand.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/crypto/rand/rand_unix.go \
|
|
|
|
go/crypto/rand/util.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_crypto_rc4_files = \
|
2013-07-16 08:54:42 +02:00
|
|
|
go/crypto/rc4/rc4.go \
|
|
|
|
go/crypto/rc4/rc4_ref.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_crypto_rsa_files = \
|
|
|
|
go/crypto/rsa/pkcs1v15.go \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/crypto/rsa/pss.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/crypto/rsa/rsa.go
|
|
|
|
go_crypto_sha1_files = \
|
|
|
|
go/crypto/sha1/sha1.go \
|
2014-06-07 00:37:27 +02:00
|
|
|
go/crypto/sha1/sha1block.go \
|
|
|
|
go/crypto/sha1/sha1block_generic.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_crypto_sha256_files = \
|
|
|
|
go/crypto/sha256/sha256.go \
|
|
|
|
go/crypto/sha256/sha256block.go
|
|
|
|
go_crypto_sha512_files = \
|
|
|
|
go/crypto/sha512/sha512.go \
|
|
|
|
go/crypto/sha512/sha512block.go
|
|
|
|
go_crypto_subtle_files = \
|
|
|
|
go/crypto/subtle/constant_time.go
|
|
|
|
go_crypto_tls_files = \
|
|
|
|
go/crypto/tls/alert.go \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/crypto/tls/cipher_suites.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/crypto/tls/common.go \
|
|
|
|
go/crypto/tls/conn.go \
|
|
|
|
go/crypto/tls/handshake_client.go \
|
|
|
|
go/crypto/tls/handshake_messages.go \
|
|
|
|
go/crypto/tls/handshake_server.go \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/crypto/tls/key_agreement.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/crypto/tls/prf.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/crypto/tls/ticket.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/crypto/tls/tls.go
|
|
|
|
go_crypto_x509_files = \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/crypto/x509/cert_pool.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/crypto/x509/pem_decrypt.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/crypto/x509/pkcs1.go \
|
2011-12-13 20:16:27 +01:00
|
|
|
go/crypto/x509/pkcs8.go \
|
2012-03-30 23:27:11 +02:00
|
|
|
go/crypto/x509/root.go \
|
|
|
|
go/crypto/x509/root_unix.go \
|
2012-11-21 08:03:38 +01:00
|
|
|
go/crypto/x509/sec1.go \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/crypto/x509/verify.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/crypto/x509/x509.go
|
2011-01-21 19:19:03 +01:00
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
go_crypto_x509_pkix_files = \
|
|
|
|
go/crypto/x509/pkix/pkix.go
|
|
|
|
|
2012-01-25 22:54:22 +01:00
|
|
|
go_database_sql_files = \
|
|
|
|
go/database/sql/convert.go \
|
|
|
|
go/database/sql/sql.go
|
|
|
|
|
|
|
|
go_database_sql_driver_files = \
|
|
|
|
go/database/sql/driver/driver.go \
|
|
|
|
go/database/sql/driver/types.go
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_debug_dwarf_files = \
|
|
|
|
go/debug/dwarf/buf.go \
|
|
|
|
go/debug/dwarf/const.go \
|
|
|
|
go/debug/dwarf/entry.go \
|
2012-03-07 02:16:20 +01:00
|
|
|
go/debug/dwarf/line.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/debug/dwarf/open.go \
|
|
|
|
go/debug/dwarf/type.go \
|
2014-06-07 00:37:27 +02:00
|
|
|
go/debug/dwarf/typeunit.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/debug/dwarf/unit.go
|
|
|
|
go_debug_elf_files = \
|
|
|
|
go/debug/elf/elf.go \
|
2012-09-28 16:48:30 +02:00
|
|
|
go/debug/elf/file.go
|
2014-06-05 01:15:33 +02:00
|
|
|
go_debug_goobj_files = \
|
|
|
|
go/debug/goobj/read.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_debug_gosym_files = \
|
|
|
|
go/debug/gosym/pclntab.go \
|
|
|
|
go/debug/gosym/symtab.go
|
|
|
|
go_debug_macho_files = \
|
2014-06-07 00:37:27 +02:00
|
|
|
go/debug/macho/fat.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/debug/macho/file.go \
|
|
|
|
go/debug/macho/macho.go
|
|
|
|
go_debug_pe_files = \
|
|
|
|
go/debug/pe/file.go \
|
|
|
|
go/debug/pe/pe.go
|
2014-06-07 00:37:27 +02:00
|
|
|
go_debug_plan9obj_files = \
|
|
|
|
go/debug/plan9obj/file.go \
|
|
|
|
go/debug/plan9obj/plan9obj.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_encoding_ascii85_files = \
|
|
|
|
go/encoding/ascii85/ascii85.go
|
2011-12-07 02:11:29 +01:00
|
|
|
go_encoding_asn1_files = \
|
|
|
|
go/encoding/asn1/asn1.go \
|
|
|
|
go/encoding/asn1/common.go \
|
|
|
|
go/encoding/asn1/marshal.go
|
2011-01-21 19:19:03 +01:00
|
|
|
go_encoding_base32_files = \
|
|
|
|
go/encoding/base32/base32.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_encoding_base64_files = \
|
|
|
|
go/encoding/base64/base64.go
|
|
|
|
go_encoding_binary_files = \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/encoding/binary/binary.go \
|
|
|
|
go/encoding/binary/varint.go
|
2011-12-07 02:11:29 +01:00
|
|
|
go_encoding_csv_files = \
|
|
|
|
go/encoding/csv/reader.go \
|
|
|
|
go/encoding/csv/writer.go
|
|
|
|
go_encoding_gob_files = \
|
|
|
|
go/encoding/gob/decode.go \
|
|
|
|
go/encoding/gob/decoder.go \
|
|
|
|
go/encoding/gob/doc.go \
|
|
|
|
go/encoding/gob/encode.go \
|
|
|
|
go/encoding/gob/encoder.go \
|
|
|
|
go/encoding/gob/error.go \
|
|
|
|
go/encoding/gob/type.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_encoding_hex_files = \
|
|
|
|
go/encoding/hex/hex.go
|
2011-12-07 02:11:29 +01:00
|
|
|
go_encoding_json_files = \
|
|
|
|
go/encoding/json/decode.go \
|
|
|
|
go/encoding/json/encode.go \
|
2014-06-05 01:15:33 +02:00
|
|
|
go/encoding/json/fold.go \
|
2011-12-07 02:11:29 +01:00
|
|
|
go/encoding/json/indent.go \
|
|
|
|
go/encoding/json/scanner.go \
|
|
|
|
go/encoding/json/stream.go \
|
|
|
|
go/encoding/json/tags.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_encoding_pem_files = \
|
|
|
|
go/encoding/pem/pem.go
|
2011-12-07 02:11:29 +01:00
|
|
|
go_encoding_xml_files = \
|
|
|
|
go/encoding/xml/marshal.go \
|
|
|
|
go/encoding/xml/read.go \
|
2012-01-25 21:56:26 +01:00
|
|
|
go/encoding/xml/typeinfo.go \
|
2011-12-07 02:11:29 +01:00
|
|
|
go/encoding/xml/xml.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2012-01-25 21:56:26 +01:00
|
|
|
go_exp_proxy_files = \
|
|
|
|
go/exp/proxy/direct.go \
|
|
|
|
go/exp/proxy/per_host.go \
|
|
|
|
go/exp/proxy/proxy.go \
|
|
|
|
go/exp/proxy/socks5.go
|
2011-10-27 01:57:58 +02:00
|
|
|
go_exp_terminal_files = \
|
2011-12-13 00:40:51 +01:00
|
|
|
go/exp/terminal/terminal.go \
|
|
|
|
go/exp/terminal/util.go
|
2011-10-27 01:57:58 +02:00
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_go_ast_files = \
|
|
|
|
go/go/ast/ast.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/go/ast/commentmap.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/go/ast/filter.go \
|
2011-12-07 02:11:29 +01:00
|
|
|
go/go/ast/import.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/go/ast/print.go \
|
2011-03-30 17:33:16 +02:00
|
|
|
go/go/ast/resolve.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/go/ast/scope.go \
|
|
|
|
go/go/ast/walk.go
|
2011-09-16 17:47:21 +02:00
|
|
|
go_go_build_files = \
|
|
|
|
go/go/build/build.go \
|
2012-03-06 18:57:23 +01:00
|
|
|
go/go/build/doc.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/go/build/read.go \
|
2013-11-14 19:07:31 +01:00
|
|
|
go/go/build/syslist.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_go_doc_files = \
|
|
|
|
go/go/doc/comment.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/go/doc/doc.go \
|
2012-01-13 06:11:45 +01:00
|
|
|
go/go/doc/example.go \
|
|
|
|
go/go/doc/exports.go \
|
2012-01-25 21:56:26 +01:00
|
|
|
go/go/doc/filter.go \
|
2012-03-02 21:01:37 +01:00
|
|
|
go/go/doc/reader.go \
|
|
|
|
go/go/doc/synopsis.go
|
2012-12-13 00:13:29 +01:00
|
|
|
go_go_format_files = \
|
|
|
|
go/go/format/format.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_go_parser_files = \
|
|
|
|
go/go/parser/interface.go \
|
|
|
|
go/go/parser/parser.go
|
|
|
|
go_go_printer_files = \
|
|
|
|
go/go/printer/nodes.go \
|
|
|
|
go/go/printer/printer.go
|
|
|
|
go_go_scanner_files = \
|
|
|
|
go/go/scanner/errors.go \
|
|
|
|
go/go/scanner/scanner.go
|
|
|
|
go_go_token_files = \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/go/token/position.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/go/token/serialize.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/go/token/token.go
|
|
|
|
|
|
|
|
go_hash_adler32_files = \
|
|
|
|
go/hash/adler32/adler32.go
|
|
|
|
go_hash_crc32_files = \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/hash/crc32/crc32.go \
|
|
|
|
go/hash/crc32/crc32_generic.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_hash_crc64_files = \
|
|
|
|
go/hash/crc64/crc64.go
|
2011-03-25 00:46:17 +01:00
|
|
|
go_hash_fnv_files = \
|
|
|
|
go/hash/fnv/fnv.go
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_html_template_files = \
|
|
|
|
go/html/template/attr.go \
|
|
|
|
go/html/template/content.go \
|
|
|
|
go/html/template/context.go \
|
|
|
|
go/html/template/css.go \
|
|
|
|
go/html/template/doc.go \
|
|
|
|
go/html/template/error.go \
|
|
|
|
go/html/template/escape.go \
|
|
|
|
go/html/template/html.go \
|
|
|
|
go/html/template/js.go \
|
|
|
|
go/html/template/template.go \
|
|
|
|
go/html/template/transition.go \
|
|
|
|
go/html/template/url.go
|
2011-09-16 17:47:21 +02:00
|
|
|
|
2011-10-27 01:57:58 +02:00
|
|
|
go_image_color_files = \
|
2012-01-13 06:11:45 +01:00
|
|
|
go/image/color/color.go \
|
|
|
|
go/image/color/ycbcr.go
|
2011-10-27 01:57:58 +02:00
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
go_image_color_palette_files = \
|
|
|
|
go/image/color/palette/palette.go
|
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
go_image_draw_files = \
|
|
|
|
go/image/draw/draw.go
|
2011-05-20 02:18:15 +02:00
|
|
|
|
|
|
|
go_image_gif_files = \
|
2013-11-06 20:49:01 +01:00
|
|
|
go/image/gif/reader.go \
|
|
|
|
go/image/gif/writer.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_image_jpeg_files = \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/image/jpeg/fdct.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/image/jpeg/huffman.go \
|
|
|
|
go/image/jpeg/idct.go \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/image/jpeg/reader.go \
|
2012-11-21 08:03:38 +01:00
|
|
|
go/image/jpeg/scan.go \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/image/jpeg/writer.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
go_image_png_files = \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/image/png/paeth.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/image/png/reader.go \
|
|
|
|
go/image/png/writer.go
|
|
|
|
|
|
|
|
go_index_suffixarray_files = \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/index/suffixarray/qsufsort.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/index/suffixarray/suffixarray.go
|
|
|
|
|
|
|
|
go_io_ioutil_files = \
|
|
|
|
go/io/ioutil/ioutil.go \
|
|
|
|
go/io/ioutil/tempfile.go
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_math_big_files = \
|
|
|
|
go/math/big/arith.go \
|
|
|
|
go/math/big/int.go \
|
|
|
|
go/math/big/nat.go \
|
|
|
|
go/math/big/rat.go
|
|
|
|
go_math_cmplx_files = \
|
|
|
|
go/math/cmplx/abs.go \
|
|
|
|
go/math/cmplx/asin.go \
|
|
|
|
go/math/cmplx/conj.go \
|
|
|
|
go/math/cmplx/exp.go \
|
|
|
|
go/math/cmplx/isinf.go \
|
|
|
|
go/math/cmplx/isnan.go \
|
|
|
|
go/math/cmplx/log.go \
|
|
|
|
go/math/cmplx/phase.go \
|
|
|
|
go/math/cmplx/polar.go \
|
|
|
|
go/math/cmplx/pow.go \
|
|
|
|
go/math/cmplx/rect.go \
|
|
|
|
go/math/cmplx/sin.go \
|
|
|
|
go/math/cmplx/sqrt.go \
|
|
|
|
go/math/cmplx/tan.go
|
|
|
|
go_math_rand_files = \
|
|
|
|
go/math/rand/exp.go \
|
|
|
|
go/math/rand/normal.go \
|
|
|
|
go/math/rand/rand.go \
|
|
|
|
go/math/rand/rng.go \
|
|
|
|
go/math/rand/zipf.go
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_mime_multipart_files = \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/mime/multipart/formdata.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/mime/multipart/multipart.go \
|
2012-12-13 00:13:29 +01:00
|
|
|
go/mime/multipart/quotedprintable.go \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/mime/multipart/writer.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_net_http_files = \
|
|
|
|
go/net/http/chunked.go \
|
|
|
|
go/net/http/client.go \
|
|
|
|
go/net/http/cookie.go \
|
|
|
|
go/net/http/filetransport.go \
|
|
|
|
go/net/http/fs.go \
|
|
|
|
go/net/http/header.go \
|
2012-01-13 06:11:45 +01:00
|
|
|
go/net/http/jar.go \
|
2011-12-07 02:11:29 +01:00
|
|
|
go/net/http/lex.go \
|
|
|
|
go/net/http/request.go \
|
|
|
|
go/net/http/response.go \
|
|
|
|
go/net/http/server.go \
|
|
|
|
go/net/http/sniff.go \
|
|
|
|
go/net/http/status.go \
|
|
|
|
go/net/http/transfer.go \
|
|
|
|
go/net/http/transport.go
|
|
|
|
go_net_mail_files = \
|
|
|
|
go/net/mail/message.go
|
|
|
|
go_net_smtp_files = \
|
|
|
|
go/net/smtp/auth.go \
|
|
|
|
go/net/smtp/smtp.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_net_textproto_files = \
|
2011-03-17 00:05:44 +01:00
|
|
|
go/net/textproto/header.go \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/net/textproto/pipeline.go \
|
|
|
|
go/net/textproto/reader.go \
|
|
|
|
go/net/textproto/textproto.go \
|
|
|
|
go/net/textproto/writer.go
|
2011-12-07 02:11:29 +01:00
|
|
|
go_net_url_files = \
|
|
|
|
go/net/url/url.go
|
|
|
|
|
|
|
|
go_net_http_cgi_files = \
|
|
|
|
go/net/http/cgi/child.go \
|
|
|
|
go/net/http/cgi/host.go
|
2013-07-16 08:54:42 +02:00
|
|
|
go_net_http_cookiejar_files = \
|
|
|
|
go/net/http/cookiejar/jar.go \
|
|
|
|
go/net/http/cookiejar/punycode.go
|
2011-12-07 02:11:29 +01:00
|
|
|
go_net_http_fcgi_files = \
|
|
|
|
go/net/http/fcgi/child.go \
|
|
|
|
go/net/http/fcgi/fcgi.go
|
|
|
|
go_net_http_httptest_files = \
|
|
|
|
go/net/http/httptest/recorder.go \
|
|
|
|
go/net/http/httptest/server.go
|
|
|
|
go_net_http_pprof_files = \
|
|
|
|
go/net/http/pprof/pprof.go
|
|
|
|
go_net_http_httputil_files = \
|
|
|
|
go/net/http/httputil/chunked.go \
|
|
|
|
go/net/http/httputil/dump.go \
|
2014-06-07 00:37:27 +02:00
|
|
|
go/net/http/httputil/httputil.go \
|
2011-12-07 02:11:29 +01:00
|
|
|
go/net/http/httputil/persist.go \
|
|
|
|
go/net/http/httputil/reverseproxy.go
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-10-27 01:57:58 +02:00
|
|
|
go_old_regexp_files = \
|
|
|
|
go/old/regexp/regexp.go
|
2011-09-16 17:47:21 +02:00
|
|
|
go_old_template_files = \
|
|
|
|
go/old/template/doc.go \
|
|
|
|
go/old/template/execute.go \
|
|
|
|
go/old/template/format.go \
|
|
|
|
go/old/template/parse.go
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_os_exec_files = \
|
|
|
|
go/os/exec/exec.go \
|
|
|
|
go/os/exec/lp_unix.go
|
|
|
|
|
2012-03-02 17:38:43 +01:00
|
|
|
go_os_signal_files = \
|
|
|
|
go/os/signal/signal.go \
|
|
|
|
go/os/signal/signal_unix.go
|
|
|
|
|
2014-01-08 02:08:29 +01:00
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
os_user_decls_file = go/os/user/decls_solaris.go
|
|
|
|
else
|
|
|
|
os_user_decls_file = go/os/user/decls_unix.go
|
|
|
|
endif
|
|
|
|
|
2011-05-20 02:18:15 +02:00
|
|
|
go_os_user_files = \
|
2012-12-13 00:13:29 +01:00
|
|
|
go/os/user/lookup.go \
|
2014-01-08 02:08:29 +01:00
|
|
|
go/os/user/lookup_unix.go \
|
|
|
|
go/os/user/user.go \
|
|
|
|
$(os_user_decls_file)
|
2011-05-20 02:18:15 +02:00
|
|
|
|
2011-03-25 00:46:17 +01:00
|
|
|
go_path_filepath_files = \
|
|
|
|
go/path/filepath/match.go \
|
|
|
|
go/path/filepath/path.go \
|
2012-03-30 23:27:11 +02:00
|
|
|
go/path/filepath/path_unix.go \
|
|
|
|
go/path/filepath/symlink.go
|
2011-03-25 00:46:17 +01:00
|
|
|
|
2011-10-27 01:57:58 +02:00
|
|
|
go_regexp_syntax_files = \
|
|
|
|
go/regexp/syntax/compile.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/regexp/syntax/doc.go \
|
2011-10-27 01:57:58 +02:00
|
|
|
go/regexp/syntax/parse.go \
|
|
|
|
go/regexp/syntax/perl_groups.go \
|
|
|
|
go/regexp/syntax/prog.go \
|
|
|
|
go/regexp/syntax/regexp.go \
|
|
|
|
go/regexp/syntax/simplify.go
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_net_rpc_jsonrpc_files = \
|
|
|
|
go/net/rpc/jsonrpc/client.go \
|
|
|
|
go/net/rpc/jsonrpc/server.go
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-01-21 19:19:03 +01:00
|
|
|
go_runtime_debug_files = \
|
2013-07-16 08:54:42 +02:00
|
|
|
go/runtime/debug/garbage.go \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/runtime/debug/stack.go
|
2010-12-03 05:34:57 +01:00
|
|
|
go_runtime_pprof_files = \
|
|
|
|
go/runtime/pprof/pprof.go
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_text_tabwriter_files = \
|
|
|
|
go/text/tabwriter/tabwriter.go
|
|
|
|
go_text_template_files = \
|
|
|
|
go/text/template/doc.go \
|
|
|
|
go/text/template/exec.go \
|
|
|
|
go/text/template/funcs.go \
|
|
|
|
go/text/template/helper.go \
|
2011-12-13 20:16:27 +01:00
|
|
|
go/text/template/template.go
|
2011-12-07 02:11:29 +01:00
|
|
|
go_text_template_parse_files = \
|
|
|
|
go/text/template/parse/lex.go \
|
|
|
|
go/text/template/parse/node.go \
|
2011-12-13 20:16:27 +01:00
|
|
|
go/text/template/parse/parse.go
|
2011-09-16 17:47:21 +02:00
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
go_sync_atomic_files = \
|
|
|
|
go/sync/atomic/doc.go
|
|
|
|
go_sync_atomic_c_files = \
|
|
|
|
go/sync/atomic/atomic.c
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
go_testing_iotest_files = \
|
|
|
|
go/testing/iotest/logger.go \
|
|
|
|
go/testing/iotest/reader.go \
|
|
|
|
go/testing/iotest/writer.go
|
|
|
|
go_testing_quick_files = \
|
|
|
|
go/testing/quick/quick.go
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
go_text_scanner_files = \
|
|
|
|
go/text/scanner/scanner.go
|
|
|
|
|
|
|
|
go_unicode_utf16_files = \
|
|
|
|
go/unicode/utf16/utf16.go
|
|
|
|
go_unicode_utf8_files = \
|
|
|
|
go/unicode/utf8/utf8.go
|
|
|
|
|
2011-01-13 06:17:52 +01:00
|
|
|
# Define Syscall and Syscall6.
|
2010-12-03 05:34:57 +01:00
|
|
|
if LIBGO_IS_RTEMS
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_syscall_file = go/syscall/syscall_stubs.go
|
2010-12-03 05:34:57 +01:00
|
|
|
else
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_syscall_file = go/syscall/syscall_unix.go
|
2011-01-13 06:17:52 +01:00
|
|
|
endif
|
|
|
|
|
2011-10-23 21:04:37 +02:00
|
|
|
# Define ForkExec and Exec.
|
2011-01-13 06:17:52 +01:00
|
|
|
if LIBGO_IS_RTEMS
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_exec_file = go/syscall/exec_stubs.go
|
2012-01-25 21:56:26 +01:00
|
|
|
syscall_exec_os_file =
|
|
|
|
else
|
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
syscall_exec_file = go/syscall/exec_unix.go
|
|
|
|
syscall_exec_os_file = go/syscall/exec_linux.go
|
2011-01-13 06:17:52 +01:00
|
|
|
else
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_exec_file = go/syscall/exec_unix.go
|
2012-01-25 21:56:26 +01:00
|
|
|
syscall_exec_os_file = go/syscall/exec_bsd.go
|
|
|
|
endif
|
2011-01-13 06:17:52 +01:00
|
|
|
endif
|
|
|
|
|
2011-03-31 01:05:04 +02:00
|
|
|
# Define Wait4.
|
2011-12-13 23:07:25 +01:00
|
|
|
if LIBGO_IS_RTEMS
|
|
|
|
syscall_wait_file =
|
|
|
|
else
|
2011-03-31 01:05:04 +02:00
|
|
|
if HAVE_WAIT4
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_wait_file = go/syscall/libcall_wait4.go
|
2011-03-31 01:05:04 +02:00
|
|
|
else
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_wait_file = go/syscall/libcall_waitpid.go
|
2011-03-31 01:05:04 +02:00
|
|
|
endif
|
2011-12-13 23:07:25 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Support for pulling apart wait status.
|
|
|
|
if LIBGO_IS_RTEMS
|
|
|
|
syscall_wait_c_file =
|
|
|
|
else
|
|
|
|
syscall_wait_c_file = go/syscall/wait.c
|
|
|
|
endif
|
2011-03-31 01:05:04 +02:00
|
|
|
|
2011-01-13 06:17:52 +01:00
|
|
|
# Define Sleep.
|
|
|
|
if LIBGO_IS_RTEMS
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_sleep_file = go/syscall/sleep_rtems.go
|
2011-01-13 06:17:52 +01:00
|
|
|
else
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_sleep_file = go/syscall/sleep_select.go
|
2011-01-13 06:17:52 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Define Errstr.
|
2011-10-23 21:04:37 +02:00
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
syscall_errstr_file = go/syscall/errstr_linux.go
|
|
|
|
else
|
2011-01-13 06:17:52 +01:00
|
|
|
if LIBGO_IS_RTEMS
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_errstr_file = go/syscall/errstr_linux.go
|
2011-01-13 06:17:52 +01:00
|
|
|
else
|
2011-03-31 00:34:55 +02:00
|
|
|
if HAVE_STRERROR_R
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_errstr_file = go/syscall/errstr.go
|
2011-03-31 00:34:55 +02:00
|
|
|
else
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_errstr_file = go/syscall/errstr_nor.go
|
|
|
|
endif
|
2011-03-31 00:34:55 +02:00
|
|
|
endif
|
2011-01-13 06:17:52 +01:00
|
|
|
endif
|
|
|
|
|
2011-10-23 21:04:37 +02:00
|
|
|
# Declare libc functions that vary for largefile systems.
|
2010-12-03 05:34:57 +01:00
|
|
|
if LIBGO_IS_LINUX
|
2011-10-23 21:04:37 +02:00
|
|
|
# Always use lseek64 on GNU/Linux.
|
|
|
|
syscall_size_file = go/syscall/libcall_posix_largefile.go
|
|
|
|
else # !LIBGO_IS_LINUX
|
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
if LIBGO_IS_386
|
|
|
|
# Use lseek64 on 32-bit Solaris/x86.
|
|
|
|
syscall_size_file = go/syscall/libcall_posix_largefile.go
|
|
|
|
else # !LIBGO_IS_386
|
|
|
|
if LIBGO_IS_SPARC
|
|
|
|
# Use lseek64 on 32-bit Solaris/SPARC.
|
|
|
|
syscall_size_file = go/syscall/libcall_posix_largefile.go
|
|
|
|
else # !LIBGO_IS_386 && !LIBGO_IS_SPARC
|
|
|
|
# Use lseek on 64-bit Solaris.
|
|
|
|
syscall_size_file = go/syscall/libcall_posix_regfile.go
|
|
|
|
endif # !LIBGO_IS_386 && !LIBGO_IS_SPARC
|
|
|
|
endif # !LIBGO_IS_SOLARIS
|
|
|
|
else # !LIBGO_IS_LINUX && !LIBGO_IS_SOLARIS
|
|
|
|
# Use lseek by default.
|
|
|
|
syscall_size_file = go/syscall/libcall_posix_regfile.go
|
|
|
|
endif # !LIBGO_IS_SOLARIS
|
|
|
|
endif # !LIBGO_IS_LINUX
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-01-13 06:17:52 +01:00
|
|
|
# Define socket sizes and types.
|
|
|
|
if LIBGO_IS_LINUX
|
2011-11-01 05:12:01 +01:00
|
|
|
syscall_socket_file = go/syscall/socket_linux.go epoll.go
|
2011-01-13 06:17:52 +01:00
|
|
|
else
|
|
|
|
if LIBGO_IS_SOLARIS
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_socket_file = go/syscall/socket_solaris.go
|
2011-01-13 06:17:52 +01:00
|
|
|
else
|
2011-04-25 21:36:12 +02:00
|
|
|
if LIBGO_IS_IRIX
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_socket_file = go/syscall/socket_irix.go
|
2011-04-25 21:36:12 +02:00
|
|
|
else
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_socket_file = go/syscall/socket_bsd.go
|
2011-01-13 06:17:52 +01:00
|
|
|
endif
|
|
|
|
endif
|
2011-04-25 21:36:12 +02:00
|
|
|
endif
|
2011-01-13 06:17:52 +01:00
|
|
|
|
2013-02-20 21:04:36 +01:00
|
|
|
# Define socket functions.
|
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
syscall_socket_os_file = go/syscall/socket_xnet.go
|
|
|
|
else
|
|
|
|
syscall_socket_os_file = go/syscall/socket_posix.go
|
|
|
|
endif
|
|
|
|
|
2011-03-07 23:39:45 +01:00
|
|
|
# Support for uname.
|
|
|
|
if LIBGO_IS_SOLARIS
|
|
|
|
if LIBGO_IS_386
|
2011-10-23 21:04:37 +02:00
|
|
|
# 32-bit Solaris 2/x86 needs _nuname, handled in libcall_solaris_386.go.
|
2011-03-07 23:39:45 +01:00
|
|
|
syscall_uname_file =
|
|
|
|
else # !LIBGO_IS_386 && LIBGO_IS_SOLARIS
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_uname_file = go/syscall/libcall_uname.go
|
2011-03-07 23:39:45 +01:00
|
|
|
endif
|
|
|
|
else # !LIBGO_IS_SOLARIS
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_uname_file = go/syscall/libcall_uname.go
|
2011-03-07 23:39:45 +01:00
|
|
|
endif
|
|
|
|
|
2012-01-31 00:57:42 +01:00
|
|
|
# GNU/Linux specific socket control messages.
|
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
syscall_sockcmsg_file = go/syscall/sockcmsg_linux.go
|
|
|
|
else
|
|
|
|
syscall_sockcmsg_file =
|
|
|
|
endif
|
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
# Support for netlink sockets and messages.
|
|
|
|
if LIBGO_IS_LINUX
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall_netlink_file = go/syscall/netlink_linux.go
|
2011-09-16 17:47:21 +02:00
|
|
|
else
|
|
|
|
syscall_netlink_file =
|
|
|
|
endif
|
|
|
|
|
2012-02-29 21:02:31 +01:00
|
|
|
# GNU/Linux specific socket filters.
|
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
syscall_lsf_file = go/syscall/lsf_linux.go
|
|
|
|
else
|
|
|
|
syscall_lsf_file =
|
|
|
|
endif
|
|
|
|
|
2012-12-22 02:15:33 +01:00
|
|
|
# GNU/Linux specific utimesnano support.
|
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
syscall_utimesnano_file = go/syscall/libcall_linux_utimesnano.go
|
|
|
|
else
|
|
|
|
syscall_utimesnano_file = go/syscall/libcall_posix_utimesnano.go
|
|
|
|
endif
|
|
|
|
|
2013-02-02 16:40:14 +01:00
|
|
|
# Test files.
|
|
|
|
if LIBGO_IS_LINUX
|
|
|
|
syscall_creds_test_file = go/syscall/creds_test.go
|
|
|
|
else
|
|
|
|
syscall_creds_test_file =
|
|
|
|
endif
|
|
|
|
|
2011-10-23 21:04:37 +02:00
|
|
|
go_base_syscall_files = \
|
2011-12-13 00:40:51 +01:00
|
|
|
go/syscall/env_unix.go \
|
2011-12-15 08:12:03 +01:00
|
|
|
go/syscall/syscall_errno.go \
|
2011-10-23 21:04:37 +02:00
|
|
|
go/syscall/libcall_support.go \
|
|
|
|
go/syscall/libcall_posix.go \
|
2012-10-23 06:31:11 +02:00
|
|
|
go/syscall/race0.go \
|
2011-10-23 21:04:37 +02:00
|
|
|
go/syscall/socket.go \
|
2012-01-31 00:57:42 +01:00
|
|
|
go/syscall/sockcmsg_unix.go \
|
2011-10-23 21:04:37 +02:00
|
|
|
go/syscall/str.go \
|
|
|
|
go/syscall/syscall.go \
|
2012-01-31 00:57:42 +01:00
|
|
|
$(syscall_sockcmsg_file) \
|
2011-10-23 21:04:37 +02:00
|
|
|
$(syscall_syscall_file) \
|
|
|
|
$(syscall_exec_file) \
|
2012-01-25 21:56:26 +01:00
|
|
|
$(syscall_exec_os_file) \
|
2011-10-23 21:04:37 +02:00
|
|
|
$(syscall_wait_file) \
|
|
|
|
$(syscall_sleep_file) \
|
|
|
|
$(syscall_errstr_file) \
|
|
|
|
$(syscall_size_file) \
|
|
|
|
$(syscall_socket_file) \
|
2013-02-20 21:04:36 +01:00
|
|
|
$(syscall_socket_os_file) \
|
2011-10-23 21:04:37 +02:00
|
|
|
$(syscall_uname_file) \
|
|
|
|
$(syscall_netlink_file) \
|
2012-02-29 21:02:31 +01:00
|
|
|
$(syscall_lsf_file) \
|
2012-12-22 02:15:33 +01:00
|
|
|
$(syscall_utimesnano_file) \
|
2011-10-23 21:04:37 +02:00
|
|
|
$(GO_LIBCALL_OS_FILE) \
|
|
|
|
$(GO_LIBCALL_OS_ARCH_FILE) \
|
|
|
|
$(GO_SYSCALL_OS_FILE) \
|
|
|
|
$(GO_SYSCALL_OS_ARCH_FILE)
|
|
|
|
|
|
|
|
go_syscall_files = \
|
|
|
|
$(go_base_syscall_files) \
|
|
|
|
libcalls.go \
|
|
|
|
sysinfo.go \
|
|
|
|
syscall_arch.go
|
|
|
|
go_syscall_c_files = \
|
|
|
|
go/syscall/errno.c \
|
2012-03-02 17:38:43 +01:00
|
|
|
go/syscall/signame.c \
|
2011-12-13 23:07:25 +01:00
|
|
|
$(syscall_wait_c_file)
|
2011-10-23 21:04:37 +02:00
|
|
|
|
2013-02-02 16:40:14 +01:00
|
|
|
go_syscall_test_files = \
|
|
|
|
$(syscall_creds_test_file) \
|
|
|
|
go/syscall/passfd_test.go
|
|
|
|
|
2011-10-23 21:04:37 +02:00
|
|
|
libcalls.go: s-libcalls; @true
|
2013-02-20 21:04:36 +01:00
|
|
|
s-libcalls: libcalls-list go/syscall/mksyscall.awk $(go_base_syscall_files)
|
2011-10-23 21:04:37 +02:00
|
|
|
rm -f libcalls.go.tmp
|
2013-02-20 21:04:36 +01:00
|
|
|
files=`echo $^ | sed -e 's/libcalls-list//' -e 's|[^ ]*go/syscall/mksyscall.awk||'`; \
|
2011-10-23 21:04:37 +02:00
|
|
|
$(AWK) -f $(srcdir)/go/syscall/mksyscall.awk $${files} > libcalls.go.tmp
|
|
|
|
$(SHELL) $(srcdir)/../move-if-change libcalls.go.tmp libcalls.go
|
|
|
|
$(STAMP) $@
|
|
|
|
|
2013-02-20 21:04:36 +01:00
|
|
|
libcalls-list: s-libcalls-list; @true
|
|
|
|
s-libcalls-list: Makefile
|
|
|
|
rm -f libcalls-list.tmp
|
|
|
|
echo $(go_base_syscall_files) > libcalls-list.tmp
|
|
|
|
$(SHELL) $(srcdir)/../move-if-change libcalls-list.tmp libcalls-list
|
|
|
|
$(STAMP) $@
|
|
|
|
|
2011-01-12 03:03:46 +01:00
|
|
|
syscall_arch.go: s-syscall_arch; @true
|
|
|
|
s-syscall_arch: Makefile
|
|
|
|
rm -f syscall_arch.go.tmp
|
|
|
|
echo "package syscall" > syscall_arch.go.tmp
|
|
|
|
echo 'const ARCH = "'$(GOARCH)'"' >> syscall_arch.go.tmp
|
2011-01-13 06:17:52 +01:00
|
|
|
echo 'const OS = "'$(GOOS)'"' >> syscall_arch.go.tmp
|
2011-01-12 03:03:46 +01:00
|
|
|
$(SHELL) $(srcdir)/../move-if-change syscall_arch.go.tmp syscall_arch.go
|
|
|
|
$(STAMP) $@
|
|
|
|
|
2011-10-23 21:04:37 +02:00
|
|
|
sysinfo.go: s-sysinfo; @true
|
|
|
|
s-sysinfo: $(srcdir)/mksysinfo.sh config.h
|
|
|
|
CC="$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(OSCFLAGS)" $(SHELL) $(srcdir)/mksysinfo.sh
|
|
|
|
$(SHELL) $(srcdir)/../move-if-change tmp-sysinfo.go sysinfo.go
|
|
|
|
$(STAMP) $@
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-11-01 05:12:01 +01:00
|
|
|
# The epoll struct has an embedded union and is packed on x86_64,
|
|
|
|
# which is too complicated for mksysinfo.sh. We find the offset of
|
|
|
|
# the only field we care about in configure.ac, and generate the
|
|
|
|
# struct here.
|
|
|
|
epoll.go: s-epoll; @true
|
|
|
|
s-epoll: Makefile
|
|
|
|
rm -f epoll.go.tmp
|
|
|
|
echo 'package syscall' > epoll.go.tmp
|
|
|
|
echo 'type EpollEvent struct {' >> epoll.go.tmp
|
|
|
|
echo ' Events uint32' >> epoll.go.tmp
|
|
|
|
case "$(SIZEOF_STRUCT_EPOLL_EVENT),$(STRUCT_EPOLL_EVENT_FD_OFFSET)" in \
|
|
|
|
0,0) echo 1>&2 "*** struct epoll_event data.fd offset unknown"; \
|
|
|
|
exit 1; ;; \
|
|
|
|
8,4) echo ' Fd int32' >> epoll.go.tmp; ;; \
|
|
|
|
12,4) echo ' Fd int32' >> epoll.go.tmp; \
|
|
|
|
echo ' Pad [4]byte' >> epoll.go.tmp; ;; \
|
|
|
|
12,8) echo ' Pad [4]byte' >> epoll.go.tmp; \
|
|
|
|
echo ' Fd int32' >> epoll.go.tmp; ;; \
|
|
|
|
16,8) echo ' Pad [4]byte' >> epoll.go.tmp; \
|
|
|
|
echo ' Fd int32' >> epoll.go.tmp; \
|
|
|
|
echo ' Pad2 [4]byte' >> epoll.go.tmp; ;; \
|
|
|
|
*) echo 1>&2 "*** struct epoll_event unsupported"; \
|
|
|
|
exit 1; ;; \
|
|
|
|
esac
|
|
|
|
echo '}' >> epoll.go.tmp
|
|
|
|
$(SHELL) $(srcdir)/../move-if-change epoll.go.tmp epoll.go
|
|
|
|
$(STAMP) $@
|
|
|
|
|
2011-01-21 19:19:03 +01:00
|
|
|
if LIBGO_IS_LINUX
|
2011-03-11 02:00:15 +01:00
|
|
|
# os_lib_inotify_lo = os/inotify.lo
|
|
|
|
os_lib_inotify_lo =
|
2011-01-21 19:19:03 +01:00
|
|
|
else
|
2011-03-11 02:00:15 +01:00
|
|
|
os_lib_inotify_lo =
|
2011-01-21 19:19:03 +01:00
|
|
|
endif
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
libgo_go_objs = \
|
2012-05-15 00:08:42 +02:00
|
|
|
bufio.lo \
|
|
|
|
bytes.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
bytes/index.lo \
|
2012-05-15 00:08:42 +02:00
|
|
|
crypto.lo \
|
2013-11-06 20:49:01 +01:00
|
|
|
encoding.lo \
|
2012-05-15 00:08:42 +02:00
|
|
|
errors.lo \
|
|
|
|
expvar.lo \
|
|
|
|
flag.lo \
|
|
|
|
fmt.lo \
|
|
|
|
hash.lo \
|
|
|
|
html.lo \
|
|
|
|
image.lo \
|
|
|
|
io.lo \
|
|
|
|
log.lo \
|
|
|
|
math.lo \
|
|
|
|
mime.lo \
|
|
|
|
net.lo \
|
|
|
|
os.lo \
|
|
|
|
path.lo \
|
|
|
|
reflect-go.lo \
|
2013-09-27 19:53:46 +02:00
|
|
|
reflect/makefunc.lo \
|
2012-05-15 00:08:42 +02:00
|
|
|
regexp.lo \
|
|
|
|
runtime-go.lo \
|
|
|
|
sort.lo \
|
|
|
|
strconv.lo \
|
|
|
|
strings.lo \
|
2013-11-06 20:49:01 +01:00
|
|
|
strings/index.lo \
|
2012-05-15 00:08:42 +02:00
|
|
|
sync.lo \
|
|
|
|
syscall.lo \
|
|
|
|
syscall/errno.lo \
|
|
|
|
syscall/signame.lo \
|
|
|
|
syscall/wait.lo \
|
|
|
|
testing.lo \
|
|
|
|
time-go.lo \
|
|
|
|
unicode.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
archive/tar.lo \
|
|
|
|
archive/zip.lo \
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/bzip2.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
compress/flate.lo \
|
|
|
|
compress/gzip.lo \
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/lzw.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
compress/zlib.lo \
|
|
|
|
container/heap.lo \
|
|
|
|
container/list.lo \
|
|
|
|
container/ring.lo \
|
|
|
|
crypto/aes.lo \
|
|
|
|
crypto/cipher.lo \
|
2011-04-07 19:09:10 +02:00
|
|
|
crypto/des.lo \
|
2011-03-17 00:05:44 +01:00
|
|
|
crypto/dsa.lo \
|
2011-03-25 00:46:17 +01:00
|
|
|
crypto/ecdsa.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/elliptic.lo \
|
|
|
|
crypto/hmac.lo \
|
|
|
|
crypto/md5.lo \
|
|
|
|
crypto/rand.lo \
|
|
|
|
crypto/rc4.lo \
|
|
|
|
crypto/rsa.lo \
|
|
|
|
crypto/sha1.lo \
|
|
|
|
crypto/sha256.lo \
|
|
|
|
crypto/sha512.lo \
|
|
|
|
crypto/subtle.lo \
|
|
|
|
crypto/tls.lo \
|
|
|
|
crypto/x509.lo \
|
2011-09-16 17:47:21 +02:00
|
|
|
crypto/x509/pkix.lo \
|
2012-01-25 22:54:22 +01:00
|
|
|
database/sql.lo \
|
|
|
|
database/sql/driver.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
debug/dwarf.lo \
|
|
|
|
debug/elf.lo \
|
2014-06-05 01:15:33 +02:00
|
|
|
debug/goobj.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
debug/gosym.lo \
|
|
|
|
debug/macho.lo \
|
|
|
|
debug/pe.lo \
|
2014-06-07 00:37:27 +02:00
|
|
|
debug/plan9obj.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/ascii85.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/asn1.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/base32.lo \
|
|
|
|
encoding/base64.lo \
|
|
|
|
encoding/binary.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/csv.lo \
|
|
|
|
encoding/gob.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/hex.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/json.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/pem.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/xml.lo \
|
2012-01-25 21:56:26 +01:00
|
|
|
exp/proxy.lo \
|
2011-10-27 01:57:58 +02:00
|
|
|
exp/terminal.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
html/template.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
go/ast.lo \
|
2011-09-16 17:47:21 +02:00
|
|
|
go/build.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
go/doc.lo \
|
2012-12-13 00:13:29 +01:00
|
|
|
go/format.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
go/parser.lo \
|
|
|
|
go/printer.lo \
|
|
|
|
go/scanner.lo \
|
|
|
|
go/token.lo \
|
|
|
|
hash/adler32.lo \
|
|
|
|
hash/crc32.lo \
|
|
|
|
hash/crc64.lo \
|
2011-03-25 00:46:17 +01:00
|
|
|
hash/fnv.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http/cgi.lo \
|
2013-07-16 08:54:42 +02:00
|
|
|
net/http/cookiejar.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http/fcgi.lo \
|
|
|
|
net/http/httptest.lo \
|
|
|
|
net/http/httputil.lo \
|
|
|
|
net/http/pprof.lo \
|
2011-10-27 01:57:58 +02:00
|
|
|
image/color.lo \
|
2013-11-06 20:49:01 +01:00
|
|
|
image/color/palette.lo \
|
2011-09-16 17:47:21 +02:00
|
|
|
image/draw.lo \
|
2011-05-20 02:18:15 +02:00
|
|
|
image/gif.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
image/jpeg.lo \
|
|
|
|
image/png.lo \
|
|
|
|
index/suffixarray.lo \
|
|
|
|
io/ioutil.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
log/syslog.lo \
|
|
|
|
log/syslog/syslog_c.lo \
|
|
|
|
math/big.lo \
|
|
|
|
math/cmplx.lo \
|
|
|
|
math/rand.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
mime/multipart.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http.lo \
|
|
|
|
net/mail.lo \
|
|
|
|
net/rpc.lo \
|
|
|
|
net/smtp.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
net/textproto.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/url.lo \
|
2011-10-27 01:57:58 +02:00
|
|
|
old/regexp.lo \
|
2011-09-16 17:47:21 +02:00
|
|
|
old/template.lo \
|
2012-05-15 00:08:42 +02:00
|
|
|
os/exec.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
$(os_lib_inotify_lo) \
|
2012-03-02 17:38:43 +01:00
|
|
|
os/signal.lo \
|
2011-05-20 02:18:15 +02:00
|
|
|
os/user.lo \
|
2011-03-25 00:46:17 +01:00
|
|
|
path/filepath.lo \
|
2011-10-27 01:57:58 +02:00
|
|
|
regexp/syntax.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/rpc/jsonrpc.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
runtime/debug.lo \
|
|
|
|
runtime/pprof.lo \
|
2011-03-17 00:05:44 +01:00
|
|
|
sync/atomic.lo \
|
|
|
|
sync/atomic_c.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
text/scanner.lo \
|
|
|
|
text/tabwriter.lo \
|
|
|
|
text/template.lo \
|
|
|
|
text/template/parse.lo \
|
2011-03-11 02:00:15 +01:00
|
|
|
testing/iotest.lo \
|
|
|
|
testing/quick.lo \
|
2011-12-07 02:11:29 +01:00
|
|
|
unicode/utf16.lo \
|
|
|
|
unicode/utf8.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
libgo_la_SOURCES = $(runtime_files)
|
|
|
|
|
2012-10-23 07:01:24 +02:00
|
|
|
libgo_la_LDFLAGS = \
|
|
|
|
-version-info $(libtool_VERSION) $(PTHREAD_CFLAGS) $(AM_LDFLAGS)
|
2011-04-01 07:11:23 +02:00
|
|
|
|
2011-01-12 07:34:08 +01:00
|
|
|
libgo_la_LIBADD = \
|
2012-09-28 16:48:30 +02:00
|
|
|
$(libgo_go_objs) ../libbacktrace/libbacktrace.la \
|
2014-05-29 22:22:27 +02:00
|
|
|
$(LIBATOMIC) $(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
libgobegin_a_SOURCES = \
|
|
|
|
runtime/go-main.c
|
|
|
|
|
|
|
|
LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
|
|
|
|
|
|
|
|
GOCFLAGS = $(CFLAGS)
|
|
|
|
AM_GOCFLAGS = $(STRINGOPS_FLAG)
|
|
|
|
GOCOMPILE = $(GOC) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_GOCFLAGS) $(GOCFLAGS)
|
|
|
|
|
|
|
|
LTGOCOMPILE = $(LIBTOOL) --tag GO --mode=compile $(GOC) $(INCLUDES) \
|
|
|
|
$(AM_GOCFLAGS) $(GOCFLAGS)
|
|
|
|
|
|
|
|
GOLINK = $(LIBTOOL) --tag GO --mode-link $(GOC) \
|
2011-01-12 07:34:08 +01:00
|
|
|
$(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_GOCFLAGS) $(LTLDFLAGS) -o $@
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
# Build the dependencies for a Go package.
|
|
|
|
BUILDDEPS = \
|
|
|
|
$(MKDIR_P) $(@D); \
|
|
|
|
$(SHELL) $(srcdir)/godeps.sh `echo $@ | sed -e 's/.dep$$//'` $^ > $@.tmp; \
|
|
|
|
mv -f $@.tmp $@
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
# Build the .go files for a package, generating a .lo file.
|
2011-02-01 00:43:49 +01:00
|
|
|
BUILDPACKAGE = \
|
2011-03-11 02:00:15 +01:00
|
|
|
$(MKDIR_P) $(@D); \
|
2010-12-03 05:34:57 +01:00
|
|
|
files=`echo $^ | sed -e 's/[^ ]*\.gox//g'`; \
|
2012-05-15 00:08:42 +02:00
|
|
|
$(LTGOCOMPILE) -I . -c -fgo-pkgpath=`echo $@ | sed -e 's/.lo$$//' -e 's/-go$$//'` -o $@ $$files
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-21 23:01:53 +01:00
|
|
|
GOTESTFLAGS =
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
# Check a package.
|
|
|
|
CHECK = \
|
2012-12-18 23:07:38 +01:00
|
|
|
GC="$(GOC) $(GOCFLAGS) $($(subst /,_,$@)_GOCFLAGS) -L `${PWD_COMMAND}` -L `${PWD_COMMAND}`/.libs"; \
|
2010-12-03 05:34:57 +01:00
|
|
|
export GC; \
|
2013-02-11 20:03:04 +01:00
|
|
|
GOLIBS="$(MATH_LIBS) $(NET_LIBS) $(LIBS)"; \
|
2011-09-27 00:33:31 +02:00
|
|
|
export GOLIBS; \
|
2010-12-03 05:34:57 +01:00
|
|
|
RUNTESTFLAGS="$(RUNTESTFLAGS)"; \
|
|
|
|
export RUNTESTFLAGS; \
|
|
|
|
MAKE="$(MAKE)"; \
|
|
|
|
export MAKE; \
|
2011-04-22 20:38:24 +02:00
|
|
|
libgccdir=`${GOC} -print-libgcc-file-name | sed -e 's|/[^/]*$$||'`; \
|
2012-12-18 23:07:38 +01:00
|
|
|
LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
|
2011-04-22 20:38:24 +02:00
|
|
|
LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
|
|
|
|
export LD_LIBRARY_PATH; \
|
2012-06-14 06:47:45 +02:00
|
|
|
$(MKDIR_P) $(@D); \
|
2011-04-02 02:29:49 +02:00
|
|
|
rm -f $@-testsum $@-testlog; \
|
2013-02-05 23:22:17 +01:00
|
|
|
if test "$(USE_DEJAGNU)" = "yes"; then \
|
2013-02-02 16:40:14 +01:00
|
|
|
$(SHELL) $(srcdir)/testsuite/gotest --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" --testname="$(@D)" --goarch="$(GOARCH)" $(GOTESTFLAGS) $(go_$(subst /,_,$(@D))_test_files); \
|
2011-01-12 00:37:05 +01:00
|
|
|
else \
|
2013-02-02 16:40:14 +01:00
|
|
|
if $(SHELL) $(srcdir)/testsuite/gotest --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" --goarch="$(GOARCH)" $(GOTESTFLAGS) $(go_$(subst /,_,$(@D))_test_files) >>$@-testlog 2>&1; then \
|
2011-03-31 18:11:56 +02:00
|
|
|
echo "PASS: $(@D)" >> $@-testlog; \
|
2011-04-02 02:29:49 +02:00
|
|
|
echo "PASS: $(@D)"; \
|
|
|
|
echo "PASS: $(@D)" > $@-testsum; \
|
2011-01-12 22:56:10 +01:00
|
|
|
else \
|
2011-03-31 18:11:56 +02:00
|
|
|
echo "FAIL: $(@D)" >> $@-testlog; \
|
|
|
|
cat $@-testlog; \
|
2011-04-02 02:29:49 +02:00
|
|
|
echo "FAIL: $(@D)" > $@-testsum; \
|
2011-01-12 22:56:10 +01:00
|
|
|
exit 1; \
|
|
|
|
fi; \
|
2011-01-12 00:37:05 +01:00
|
|
|
fi
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
# Build all packages before checking any.
|
|
|
|
CHECK_DEPS = libgo.la libgobegin.a \
|
|
|
|
$(toolexeclibgo_DATA) \
|
2011-03-31 18:11:56 +02:00
|
|
|
$(toolexeclibgoarchive_DATA) \
|
|
|
|
$(toolexeclibgocompress_DATA) \
|
|
|
|
$(toolexeclibgocontainer_DATA) \
|
|
|
|
$(toolexeclibgocrypto_DATA) \
|
|
|
|
$(toolexeclibgodebug_DATA) \
|
|
|
|
$(toolexeclibgoencoding_DATA) \
|
|
|
|
$(toolexeclibgoexp_DATA) \
|
|
|
|
$(toolexeclibgogo_DATA) \
|
|
|
|
$(toolexeclibgohash_DATA) \
|
|
|
|
$(toolexeclibgoimage_DATA) \
|
|
|
|
$(toolexeclibgoindex_DATA) \
|
|
|
|
$(toolexeclibgoio_DATA) \
|
2011-12-07 02:11:29 +01:00
|
|
|
$(toolexeclibgolog_DATA) \
|
|
|
|
$(toolexeclibgomath_DATA) \
|
2011-03-31 18:11:56 +02:00
|
|
|
$(toolexeclibgomime_DATA) \
|
|
|
|
$(toolexeclibgonet_DATA) \
|
2011-12-07 02:11:29 +01:00
|
|
|
$(toolexeclibgonethttp_DATA) \
|
2011-03-31 18:11:56 +02:00
|
|
|
$(toolexeclibgoos_DATA) \
|
|
|
|
$(toolexeclibgopath_DATA) \
|
|
|
|
$(toolexeclibgorpc_DATA) \
|
|
|
|
$(toolexeclibgoruntime_DATA) \
|
|
|
|
$(toolexeclibgosync_DATA) \
|
2011-12-07 02:11:29 +01:00
|
|
|
$(toolexeclibgotesting_DATA) \
|
|
|
|
$(toolexeclibgotext_DATA) \
|
|
|
|
$(toolexeclibgotexttemplate_DATA) \
|
|
|
|
$(toolexeclibgounicode_DATA)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ bufio.lo.dep
|
|
|
|
bufio.lo.dep: $(go_bufio_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
bufio.lo: $(go_bufio_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
bufio/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: bufio/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ bytes.lo.dep
|
|
|
|
bytes.lo.dep: $(go_bytes_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
bytes.lo: $(go_bytes_files)
|
2011-03-11 02:00:15 +01:00
|
|
|
$(BUILDPACKAGE)
|
2012-05-15 00:08:42 +02:00
|
|
|
bytes/index.lo: $(go_bytes_c_files)
|
|
|
|
@$(MKDIR_P) bytes
|
2011-03-11 02:00:15 +01:00
|
|
|
$(LTCOMPILE) -c -o bytes/index.lo $(srcdir)/go/bytes/indexbyte.c
|
2010-12-03 05:34:57 +01:00
|
|
|
bytes/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: bytes/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ crypto.lo.dep
|
|
|
|
crypto.lo.dep: $(go_crypto_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
crypto.lo: $(go_crypto_files)
|
2011-03-17 00:05:44 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
crypto/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-17 00:05:44 +01:00
|
|
|
.PHONY: crypto/check
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
@go_include@ encoding.lo.dep
|
|
|
|
encoding.lo.dep: $(go_encoding_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding.lo: $(go_encoding_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
encoding/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: encoding/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ errors.lo.dep
|
|
|
|
errors.lo.dep: $(go_errors_files)
|
2011-12-03 03:17:34 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
errors.lo: $(go_errors_files)
|
2011-12-03 03:17:34 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
errors/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: errors/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ expvar.lo.dep
|
|
|
|
expvar.lo.dep: $(go_expvar_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
expvar.lo: $(go_expvar_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
expvar/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: expvar/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ flag.lo.dep
|
|
|
|
flag.lo.dep: $(go_flag_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
flag.lo: $(go_flag_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
flag/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: flag/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ fmt.lo.dep
|
|
|
|
fmt.lo.dep: $(go_fmt_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
fmt.lo: $(go_fmt_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
fmt/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: fmt/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ hash.lo.dep
|
|
|
|
hash.lo.dep: $(go_hash_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
hash.lo: $(go_hash_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
hash/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: hash/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ html.lo.dep
|
|
|
|
html.lo.dep: $(go_html_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
html.lo: $(go_html_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
html/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: html/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ image.lo.dep
|
|
|
|
image.lo.dep: $(go_image_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
image.lo: $(go_image_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
image/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: image/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ io.lo.dep
|
|
|
|
io.lo.dep: $(go_io_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
io.lo: $(go_io_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
io/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: io/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ log.lo.dep
|
|
|
|
log.lo.dep: $(go_log_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
log.lo: $(go_log_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
log/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: log/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ math.lo.dep
|
|
|
|
math.lo.dep: $(go_math_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
math.lo: $(go_math_files)
|
2012-02-08 20:38:17 +01:00
|
|
|
$(MKDIR_P) $(@D)
|
|
|
|
files=`echo $^ | sed -e 's/[^ ]*\.gox//g'`; \
|
2012-05-15 00:08:42 +02:00
|
|
|
$(LTGOCOMPILE) $(MATH_FLAG) -I . -c -fgo-pkgpath=math -o $@ $$files
|
2010-12-03 05:34:57 +01:00
|
|
|
math/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: math/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ mime.lo.dep
|
|
|
|
mime.lo.dep: $(go_mime_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
mime.lo: $(go_mime_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
mime/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: mime/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ net.lo.dep
|
|
|
|
net.lo.dep: $(go_net_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
net.lo: $(go_net_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
net/check: $(CHECK_DEPS)
|
2011-09-16 17:47:21 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: net/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ os.lo.dep
|
|
|
|
os.lo.dep: $(go_os_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
os.lo: $(go_os_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
os/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: os/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ path.lo.dep
|
|
|
|
path.lo.dep: $(go_path_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
path.lo: $(go_path_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
path/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: path/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ reflect-go.lo.dep
|
|
|
|
reflect-go.lo.dep: $(go_reflect_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
reflect-go.lo: $(go_reflect_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
reflect/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2013-09-27 19:53:46 +02:00
|
|
|
reflect/makefunc.lo: $(go_reflect_makefunc_s_file)
|
|
|
|
@$(MKDIR_P) reflect
|
|
|
|
$(LTCOMPILE) -c -o $@ $<
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: reflect/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ regexp.lo.dep
|
|
|
|
regexp.lo.dep: $(go_regexp_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
regexp.lo: $(go_regexp_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
regexp/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: regexp/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ runtime-go.lo.dep
|
|
|
|
runtime-go.lo.dep: $(go_runtime_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
runtime-go.lo: $(go_runtime_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: runtime/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ sort.lo.dep
|
|
|
|
sort.lo.dep: $(go_sort_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
sort.lo: $(go_sort_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
sort/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: sort/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ strconv.lo.dep
|
|
|
|
strconv.lo.dep: $(go_strconv_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
strconv.lo: $(go_strconv_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
strconv/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: strconv/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ strings.lo.dep
|
|
|
|
strings.lo.dep: $(go_strings_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
strings.lo: $(go_strings_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2013-11-06 20:49:01 +01:00
|
|
|
strings/index.lo: $(go_strings_c_files)
|
|
|
|
@$(MKDIR_P) strings
|
|
|
|
$(LTCOMPILE) -c -o strings/index.lo $(srcdir)/go/strings/indexbyte.c
|
2010-12-03 05:34:57 +01:00
|
|
|
strings/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: strings/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ sync.lo.dep
|
|
|
|
sync.lo.dep: $(go_sync_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
sync.lo: $(go_sync_files)
|
2011-03-11 02:00:15 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
sync/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: sync/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ testing.lo.dep
|
|
|
|
testing.lo.dep: $(go_testing_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
testing.lo: $(go_testing_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
testing/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: testing/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ time-go.lo.dep
|
|
|
|
time-go.lo.dep: $(go_time_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
time-go.lo: $(go_time_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
time/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: time/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ unicode.lo.dep
|
|
|
|
unicode.lo.dep: $(go_unicode_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
unicode.lo: $(go_unicode_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
unicode/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: unicode/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ archive/tar.lo.dep
|
|
|
|
archive/tar.lo.dep: $(go_archive_tar_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
archive/tar.lo: $(go_archive_tar_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
archive/tar/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: archive/tar/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ archive/zip.lo.dep
|
|
|
|
archive/zip.lo.dep: $(go_archive_zip_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
archive/zip.lo: $(go_archive_zip_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
archive/zip/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: archive/zip/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ compress/bzip2.lo.dep
|
|
|
|
compress/bzip2.lo.dep: $(go_compress_bzip2_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
compress/bzip2.lo: $(go_compress_bzip2_files)
|
2011-03-17 00:05:44 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
compress/bzip2/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-17 00:05:44 +01:00
|
|
|
.PHONY: compress/bzip2/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ compress/flate.lo.dep
|
|
|
|
compress/flate.lo.dep: $(go_compress_flate_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
compress/flate.lo: $(go_compress_flate_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
compress/flate/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: compress/flate/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ compress/gzip.lo.dep
|
|
|
|
compress/gzip.lo.dep: $(go_compress_gzip_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
compress/gzip.lo: $(go_compress_gzip_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
compress/gzip/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: compress/gzip/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ compress/lzw.lo.dep
|
|
|
|
compress/lzw.lo.dep: $(go_compress_lzw_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
compress/lzw.lo: $(go_compress_lzw_files)
|
2011-03-17 00:05:44 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
compress/lzw/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-17 00:05:44 +01:00
|
|
|
.PHONY: compress/lzw/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ compress/zlib.lo.dep
|
|
|
|
compress/zlib.lo.dep: $(go_compress_zlib_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
compress/zlib.lo: $(go_compress_zlib_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
compress/zlib/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: compress/zlib/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ container/heap.lo.dep
|
|
|
|
container/heap.lo.dep: $(go_container_heap_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
container/heap.lo: $(go_container_heap_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
container/heap/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: container/heap/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ container/list.lo.dep
|
|
|
|
container/list.lo.dep: $(go_container_list_files)
|
|
|
|
$(BUILDDEPS)
|
2011-03-11 02:00:15 +01:00
|
|
|
container/list.lo: $(go_container_list_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
container/list/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: container/list/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ container/ring.lo.dep
|
|
|
|
container/ring.lo.dep: $(go_container_ring_files)
|
|
|
|
$(BUILDDEPS)
|
2011-03-11 02:00:15 +01:00
|
|
|
container/ring.lo: $(go_container_ring_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
container/ring/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: container/ring/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/aes.lo.dep
|
|
|
|
crypto/aes.lo.dep: $(go_crypto_aes_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/aes.lo: $(go_crypto_aes_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/aes/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/aes/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/cipher.lo.dep
|
|
|
|
crypto/cipher.lo.dep: $(go_crypto_cipher_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/cipher.lo: $(go_crypto_cipher_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2011-01-21 19:19:03 +01:00
|
|
|
crypto/cipher/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-01-21 19:19:03 +01:00
|
|
|
.PHONY: crypto/cipher/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/des.lo.dep
|
|
|
|
crypto/des.lo.dep: $(go_crypto_des_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/des.lo: $(go_crypto_des_files)
|
2011-04-07 19:09:10 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
crypto/des/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: crypto/des/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/dsa.lo.dep
|
|
|
|
crypto/dsa.lo.dep: $(go_crypto_dsa_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/dsa.lo: $(go_crypto_dsa_files)
|
2011-03-17 00:05:44 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
crypto/dsa/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-17 00:05:44 +01:00
|
|
|
.PHONY: crypto/dsa/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/ecdsa.lo.dep
|
|
|
|
crypto/ecdsa.lo.dep: $(go_crypto_ecdsa_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/ecdsa.lo: $(go_crypto_ecdsa_files)
|
2011-03-25 00:46:17 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
crypto/ecdsa/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-25 00:46:17 +01:00
|
|
|
.PHONY: crypto/ecdsa/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/elliptic.lo.dep
|
|
|
|
crypto/elliptic.lo.dep: $(go_crypto_elliptic_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/elliptic.lo: $(go_crypto_elliptic_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2011-01-21 19:19:03 +01:00
|
|
|
crypto/elliptic/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-01-21 19:19:03 +01:00
|
|
|
.PHONY: crypto/elliptic/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/hmac.lo.dep
|
|
|
|
crypto/hmac.lo.dep: $(go_crypto_hmac_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/hmac.lo: $(go_crypto_hmac_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/hmac/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/hmac/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/md5.lo.dep
|
|
|
|
crypto/md5.lo.dep: $(go_crypto_md5_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/md5.lo: $(go_crypto_md5_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/md5/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/md5/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/rand.lo.dep
|
|
|
|
crypto/rand.lo.dep: $(go_crypto_rand_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/rand.lo: $(go_crypto_rand_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/rand/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/rand/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/rc4.lo.dep
|
|
|
|
crypto/rc4.lo.dep: $(go_crypto_rc4_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/rc4.lo: $(go_crypto_rc4_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/rc4/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/rc4/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/rsa.lo.dep
|
|
|
|
crypto/rsa.lo.dep: $(go_crypto_rsa_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/rsa.lo: $(go_crypto_rsa_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/rsa/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/rsa/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/sha1.lo.dep
|
|
|
|
crypto/sha1.lo.dep: $(go_crypto_sha1_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/sha1.lo: $(go_crypto_sha1_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/sha1/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/sha1/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/sha256.lo.dep
|
|
|
|
crypto/sha256.lo.dep: $(go_crypto_sha256_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/sha256.lo: $(go_crypto_sha256_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/sha256/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/sha256/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/sha512.lo.dep
|
|
|
|
crypto/sha512.lo.dep: $(go_crypto_sha512_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/sha512.lo: $(go_crypto_sha512_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/sha512/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/sha512/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/subtle.lo.dep
|
|
|
|
crypto/subtle.lo.dep: $(go_crypto_subtle_files)
|
|
|
|
$(BUILDDEPS)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/subtle.lo: $(go_crypto_subtle_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/subtle/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/subtle/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/tls.lo.dep
|
|
|
|
crypto/tls.lo.dep: $(go_crypto_tls_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/tls.lo: $(go_crypto_tls_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/tls/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/tls/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/x509.lo.dep
|
|
|
|
crypto/x509.lo.dep: $(go_crypto_x509_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/x509.lo: $(go_crypto_x509_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/x509/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: crypto/x509/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ crypto/x509/pkix.lo.dep
|
|
|
|
crypto/x509/pkix.lo.dep: $(go_crypto_x509_pkix_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
crypto/x509/pkix.lo: $(go_crypto_x509_pkix_files)
|
2011-09-16 17:47:21 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
crypto/x509/pkix/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: crypto/x509/pkix/check
|
|
|
|
|
2012-01-25 22:54:22 +01:00
|
|
|
@go_include@ database/sql.lo.dep
|
|
|
|
database/sql.lo.dep: $(go_database_sql_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
database/sql.lo: $(go_database_sql_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
database/sql/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: database/sql/check
|
|
|
|
|
|
|
|
@go_include@ database/sql/driver.lo.dep
|
|
|
|
database/sql/driver.lo.dep: $(go_database_sql_driver_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
database/sql/driver.lo: $(go_database_sql_driver_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
database/sql/driver/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: database/sql/driver/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ debug/dwarf.lo.dep
|
|
|
|
debug/dwarf.lo.dep: $(go_debug_dwarf_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
debug/dwarf.lo: $(go_debug_dwarf_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/dwarf/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: debug/dwarf/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ debug/elf.lo.dep
|
|
|
|
debug/elf.lo.dep: $(go_debug_elf_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
debug/elf.lo: $(go_debug_elf_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/elf/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: debug/elf/check
|
|
|
|
|
2014-06-05 01:15:33 +02:00
|
|
|
@go_include@ debug/goobj.lo.dep
|
|
|
|
debug/goobj.lo.dep: $(go_debug_goobj_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
debug/goobj.lo: $(go_debug_goobj_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
debug/goobj/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: debug/goobj/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ debug/gosym.lo.dep
|
|
|
|
debug/gosym.lo.dep: $(go_debug_gosym_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
debug/gosym.lo: $(go_debug_gosym_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/gosym/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: debug/gosym/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ debug/macho.lo.dep
|
|
|
|
debug/macho.lo.dep: $(go_debug_macho_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
debug/macho.lo: $(go_debug_macho_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/macho/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: debug/macho/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ debug/pe.lo.dep
|
|
|
|
debug/pe.lo.dep: $(go_debug_pe_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
debug/pe.lo: $(go_debug_pe_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/pe/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: debug/pe/check
|
|
|
|
|
2014-06-07 00:37:27 +02:00
|
|
|
@go_include@ debug/plan9obj.lo.dep
|
|
|
|
debug/plan9obj.lo.dep: $(go_debug_plan9obj_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
debug/plan9obj.lo: $(go_debug_plan9obj_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
debug/plan9obj/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: debug/plan9obj/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ encoding/asn1.lo.dep
|
|
|
|
encoding/asn1.lo.dep: $(go_encoding_asn1_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/asn1.lo: $(go_encoding_asn1_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
encoding/asn1/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: encoding/asn1/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ encoding/ascii85.lo.dep
|
|
|
|
encoding/ascii85.lo.dep: $(go_encoding_ascii85_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/ascii85.lo: $(go_encoding_ascii85_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/ascii85/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: encoding/ascii85/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ encoding/base32.lo.dep
|
|
|
|
encoding/base32.lo.dep: $(go_encoding_base32_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/base32.lo: $(go_encoding_base32_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2011-01-21 19:19:03 +01:00
|
|
|
encoding/base32/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-01-21 19:19:03 +01:00
|
|
|
.PHONY: encoding/base32/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ encoding/base64.lo.dep
|
|
|
|
encoding/base64.lo.dep: $(go_encoding_base64_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/base64.lo: $(go_encoding_base64_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/base64/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: encoding/base64/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ encoding/binary.lo.dep
|
|
|
|
encoding/binary.lo.dep: $(go_encoding_binary_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/binary.lo: $(go_encoding_binary_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/binary/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: encoding/binary/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ encoding/csv.lo.dep
|
|
|
|
encoding/csv.lo.dep: $(go_encoding_csv_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/csv.lo: $(go_encoding_csv_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
encoding/csv/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: encoding/csv/check
|
|
|
|
|
|
|
|
@go_include@ encoding/gob.lo.dep
|
|
|
|
encoding/gob.lo.dep: $(go_encoding_gob_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/gob.lo: $(go_encoding_gob_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
encoding/gob/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: encoding/gob/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ encoding/hex.lo.dep
|
|
|
|
encoding/hex.lo.dep: $(go_encoding_hex_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/hex.lo: $(go_encoding_hex_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/hex/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: encoding/hex/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ encoding/json.lo.dep
|
|
|
|
encoding/json.lo.dep: $(go_encoding_json_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/json.lo: $(go_encoding_json_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
encoding/json/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: encoding/json/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ encoding/pem.lo.dep
|
|
|
|
encoding/pem.lo.dep: $(go_encoding_pem_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/pem.lo: $(go_encoding_pem_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/pem/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: encoding/pem/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ encoding/xml.lo.dep
|
|
|
|
encoding/xml.lo.dep: $(go_encoding_xml_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
encoding/xml.lo: $(go_encoding_xml_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
encoding/xml/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: encoding/xml/check
|
|
|
|
|
2012-01-25 21:56:26 +01:00
|
|
|
@go_include@ exp/proxy.lo.dep
|
|
|
|
exp/proxy.lo.dep: $(go_exp_proxy_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
exp/proxy.lo: $(go_exp_proxy_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
exp/proxy/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: exp/proxy/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ exp/terminal.lo.dep
|
|
|
|
exp/terminal.lo.dep: $(go_exp_terminal_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
exp/terminal.lo: $(go_exp_terminal_files)
|
2011-10-27 01:57:58 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
exp/terminal/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: exp/terminal/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ html/template.lo.dep
|
|
|
|
html/template.lo.dep: $(go_html_template_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2011-12-07 02:11:29 +01:00
|
|
|
html/template.lo: $(go_html_template_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2011-12-07 02:11:29 +01:00
|
|
|
html/template/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-12-07 02:11:29 +01:00
|
|
|
.PHONY: html/template/check
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ go/ast.lo.dep
|
|
|
|
go/ast.lo.dep: $(go_go_ast_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/ast.lo: $(go_go_ast_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
go/ast/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: go/ast/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ go/build.lo.dep
|
|
|
|
go/build.lo.dep: $(go_go_build_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/build.lo: $(go_go_build_files)
|
2011-09-16 17:47:21 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
go/build/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: go/build/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ go/doc.lo.dep
|
|
|
|
go/doc.lo.dep: $(go_go_doc_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/doc.lo: $(go_go_doc_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
go/doc/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: go/doc/check
|
|
|
|
|
2012-12-13 00:13:29 +01:00
|
|
|
@go_include@ go/format.lo.dep
|
|
|
|
go/format.lo.dep: $(go_go_format_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/format.lo: $(go_go_format_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
go/format/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: go/format/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ go/parser.lo.dep
|
|
|
|
go/parser.lo.dep: $(go_go_parser_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/parser.lo: $(go_go_parser_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
go/parser/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: go/parser/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ go/printer.lo.dep
|
|
|
|
go/printer.lo.dep: $(go_go_printer_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/printer.lo: $(go_go_printer_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
go/printer/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: go/printer/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ go/scanner.lo.dep
|
|
|
|
go/scanner.lo.dep: $(go_go_scanner_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/scanner.lo: $(go_go_scanner_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
go/scanner/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: go/scanner/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ go/token.lo.dep
|
|
|
|
go/token.lo.dep: $(go_go_token_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
go/token.lo: $(go_go_token_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
go/token/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: go/token/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ hash/adler32.lo.dep
|
|
|
|
hash/adler32.lo.dep: $(go_hash_adler32_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
hash/adler32.lo: $(go_hash_adler32_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
hash/adler32/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: hash/adler32/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ hash/crc32.lo.dep
|
|
|
|
hash/crc32.lo.dep: $(go_hash_crc32_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
hash/crc32.lo: $(go_hash_crc32_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
hash/crc32/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: hash/crc32/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ hash/crc64.lo.dep
|
|
|
|
hash/crc64.lo.dep: $(go_hash_crc64_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
hash/crc64.lo: $(go_hash_crc64_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
hash/crc64/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: hash/crc64/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ hash/fnv.lo.dep
|
|
|
|
hash/fnv.lo.dep: $(go_hash_fnv_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
hash/fnv.lo: $(go_hash_fnv_files)
|
2011-03-25 00:46:17 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
hash/fnv/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-25 00:46:17 +01:00
|
|
|
.PHONY: hash/fnv/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ image/color.lo.dep
|
|
|
|
image/color.lo.dep: $(go_image_color_files)
|
|
|
|
$(BUILDDEPS)
|
2011-10-27 01:57:58 +02:00
|
|
|
image/color.lo: $(go_image_color_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
image/color/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: image/color/check
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
@go_include@ image/color/palette.lo.dep
|
|
|
|
image/color/palette.lo.dep: $(go_image_color_palette_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
image/color/palette.lo: $(go_image_color_palette_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
image/color/palette/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: image/color/palette/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ image/draw.lo.dep
|
|
|
|
image/draw.lo.dep: $(go_image_draw_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
image/draw.lo: $(go_image_draw_files)
|
2011-09-16 17:47:21 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
image/draw/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: image/draw/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ image/gif.lo.dep
|
|
|
|
image/gif.lo.dep: $(go_image_gif_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
image/gif.lo: $(go_image_gif_files)
|
2011-05-20 02:18:15 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
image/gif/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: image/gif/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ image/jpeg.lo.dep
|
|
|
|
image/jpeg.lo.dep: $(go_image_jpeg_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
image/jpeg.lo: $(go_image_jpeg_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
image/jpeg/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: image/jpeg/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ image/png.lo.dep
|
|
|
|
image/png.lo.dep: $(go_image_png_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
image/png.lo: $(go_image_png_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
image/png/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: image/png/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ index/suffixarray.lo.dep
|
|
|
|
index/suffixarray.lo.dep: $(go_index_suffixarray_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
index/suffixarray.lo: $(go_index_suffixarray_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
index/suffixarray/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: index/suffixarray/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ io/ioutil.lo.dep
|
|
|
|
io/ioutil.lo.dep: $(go_io_ioutil_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
io/ioutil.lo: $(go_io_ioutil_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
io/ioutil/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: io/ioutil/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ log/syslog.lo.dep
|
|
|
|
log/syslog.lo.dep: $(go_log_syslog_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
log/syslog.lo: $(go_log_syslog_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
log/syslog/syslog_c.lo: $(go_syslog_c_files) log/syslog.lo
|
2012-04-23 19:02:54 +02:00
|
|
|
@$(MKDIR_P) log/syslog
|
2011-12-07 02:11:29 +01:00
|
|
|
$(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
|
|
|
|
log/syslog/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: log/syslog/check
|
|
|
|
|
|
|
|
@go_include@ math/big.lo.dep
|
|
|
|
math/big.lo.dep: $(go_math_big_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
math/big.lo: $(go_math_big_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
math/big/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: math/big/check
|
|
|
|
|
|
|
|
@go_include@ math/cmplx.lo.dep
|
|
|
|
math/cmplx.lo.dep: $(go_math_cmplx_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
math/cmplx.lo: $(go_math_cmplx_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
math/cmplx/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: math/cmplx/check
|
|
|
|
|
|
|
|
@go_include@ math/rand.lo.dep
|
|
|
|
math/rand.lo.dep: $(go_math_rand_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
math/rand.lo: $(go_math_rand_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
math/rand/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: math/rand/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ mime/multipart.lo.dep
|
|
|
|
mime/multipart.lo.dep: $(go_mime_multipart_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
mime/multipart.lo: $(go_mime_multipart_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
mime/multipart/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: mime/multipart/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ net/http.lo.dep
|
|
|
|
net/http.lo.dep: $(go_net_http_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/http.lo: $(go_net_http_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/http/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/http/check
|
|
|
|
|
|
|
|
@go_include@ net/mail.lo.dep
|
|
|
|
net/mail.lo.dep: $(go_net_mail_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/mail.lo: $(go_net_mail_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/mail/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/mail/check
|
|
|
|
|
|
|
|
@go_include@ net/rpc.lo.dep
|
|
|
|
net/rpc.lo.dep: $(go_net_rpc_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/rpc.lo: $(go_net_rpc_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/rpc/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/rpc/check
|
|
|
|
|
|
|
|
@go_include@ net/smtp.lo.dep
|
|
|
|
net/smtp.lo.dep: $(go_net_smtp_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/smtp.lo: $(go_net_smtp_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/smtp/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/smtp/check
|
|
|
|
|
|
|
|
@go_include@ net/url.lo.dep
|
|
|
|
net/url.lo.dep: $(go_net_url_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/url.lo: $(go_net_url_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/url/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/url/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ net/textproto.lo.dep
|
|
|
|
net/textproto.lo.dep: $(go_net_textproto_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/textproto.lo: $(go_net_textproto_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
net/textproto/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: net/textproto/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ net/http/cgi.lo.dep
|
|
|
|
net/http/cgi.lo.dep: $(go_net_http_cgi_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/http/cgi.lo: $(go_net_http_cgi_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/http/cgi/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/http/cgi/check
|
|
|
|
|
2013-07-16 08:54:42 +02:00
|
|
|
@go_include@ net/http/cookiejar.lo.dep
|
|
|
|
net/http/cookiejar.lo.dep: $(go_net_http_cookiejar_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/http/cookiejar.lo: $(go_net_http_cookiejar_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/http/cookiejar/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/http/cookiejar/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ net/http/fcgi.lo.dep
|
|
|
|
net/http/fcgi.lo.dep: $(go_net_http_fcgi_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/http/fcgi.lo: $(go_net_http_fcgi_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/http/fcgi/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/http/fcgi/check
|
|
|
|
|
|
|
|
@go_include@ net/http/httptest.lo.dep
|
|
|
|
net/http/httptest.lo.dep: $(go_net_http_httptest_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/http/httptest.lo: $(go_net_http_httptest_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/http/httptest/check: $(check_deps)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/http/httptest/check
|
|
|
|
|
|
|
|
@go_include@ net/http/httputil.lo.dep
|
|
|
|
net/http/httputil.lo.dep: $(go_net_http_httputil_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/http/httputil.lo: $(go_net_http_httputil_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/http/httputil/check: $(check_deps)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/http/httputil/check
|
|
|
|
|
|
|
|
@go_include@ net/http/pprof.lo.dep
|
|
|
|
net/http/pprof.lo.dep: $(go_net_http_pprof_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/http/pprof.lo: $(go_net_http_pprof_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/http/pprof/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/http/pprof/check
|
|
|
|
|
|
|
|
@go_include@ net/rpc/jsonrpc.lo.dep
|
|
|
|
net/rpc/jsonrpc.lo.dep: $(go_net_rpc_jsonrpc_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
net/rpc/jsonrpc.lo: $(go_net_rpc_jsonrpc_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
net/rpc/jsonrpc/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: net/rpc/jsonrpc/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ old/regexp.lo.dep
|
|
|
|
old/regexp.lo.dep: $(go_old_regexp_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
old/regexp.lo: $(go_old_regexp_files)
|
2011-10-27 01:57:58 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
old/regexp/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: old/regexp/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ old/template.lo.dep
|
|
|
|
old/template.lo.dep: $(go_old_template_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
old/template.lo: $(go_old_template_files)
|
2011-09-16 17:47:21 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
old/template/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: old/template/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ os/exec.lo.dep
|
|
|
|
os/exec.lo.dep: $(go_os_exec_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
os/exec.lo: $(go_os_exec_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
os/exec/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: os/exec/check
|
|
|
|
|
2012-03-02 17:38:43 +01:00
|
|
|
@go_include@ os/signal.lo.dep
|
|
|
|
os/signal.lo.dep: $(go_os_signal_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
os/signal.lo: $(go_os_signal_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
os/signal/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: os/signal/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ os/user.lo.dep
|
|
|
|
os/user.lo.dep: $(go_os_user_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
os/user.lo: $(go_os_user_files)
|
2011-05-20 02:18:15 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
os/user/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: os/user/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ path/filepath.lo.dep
|
|
|
|
path/filepath.lo.dep: $(go_path_filepath_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
path/filepath.lo: $(go_path_filepath_files)
|
2011-03-25 00:46:17 +01:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
path/filepath/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-25 00:46:17 +01:00
|
|
|
.PHONY: path/filepath/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ regexp/syntax.lo.dep
|
|
|
|
regexp/syntax.lo.dep: $(go_regexp_syntax_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
regexp/syntax.lo: $(go_regexp_syntax_files)
|
2011-10-27 01:57:58 +02:00
|
|
|
$(BUILDPACKAGE)
|
|
|
|
regexp/syntax/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: regexp/syntax/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ runtime/debug.lo.dep
|
|
|
|
runtime/debug.lo.dep: $(go_runtime_debug_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
runtime/debug.lo: $(go_runtime_debug_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2011-01-21 19:19:03 +01:00
|
|
|
runtime/debug/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-01-21 19:19:03 +01:00
|
|
|
.PHONY: runtime/debug/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ runtime/pprof.lo.dep
|
|
|
|
runtime/pprof.lo.dep: $(go_runtime_pprof_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
runtime/pprof.lo: $(go_runtime_pprof_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
runtime/pprof/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: runtime/pprof/check
|
2012-07-26 03:57:04 +02:00
|
|
|
# At least for now, we need -static-libgo for this test, because
|
|
|
|
# otherwise we can't get the line numbers.
|
|
|
|
runtime_pprof_check_GOCFLAGS = -static-libgo
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ sync/atomic.lo.dep
|
|
|
|
sync/atomic.lo.dep: $(go_sync_atomic_files)
|
|
|
|
$(BUILDDEPS)
|
2011-03-17 00:05:44 +01:00
|
|
|
sync/atomic.lo: $(go_sync_atomic_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
sync/atomic_c.lo: $(go_sync_atomic_c_files) sync/atomic.lo
|
|
|
|
$(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
|
|
|
|
sync/atomic/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2011-03-17 00:05:44 +01:00
|
|
|
.PHONY: sync/atomic/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ text/scanner.lo.dep
|
|
|
|
text/scanner.lo.dep: $(go_text_scanner_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
text/scanner.lo: $(go_text_scanner_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
text/scanner/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: text/scanner/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ text/tabwriter.lo.dep
|
|
|
|
text/tabwriter.lo.dep: $(go_text_tabwriter_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
text/tabwriter.lo: $(go_text_tabwriter_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
text/tabwriter/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: text/tabwriter/check
|
|
|
|
|
|
|
|
@go_include@ text/template.lo.dep
|
|
|
|
text/template.lo.dep: $(go_text_template_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2011-12-07 02:11:29 +01:00
|
|
|
text/template.lo: $(go_text_template_files)
|
2011-09-16 17:47:21 +02:00
|
|
|
$(BUILDPACKAGE)
|
2011-12-07 02:11:29 +01:00
|
|
|
text/template/check: $(CHECK_DEPS)
|
2011-09-16 17:47:21 +02:00
|
|
|
@$(CHECK)
|
2011-12-07 02:11:29 +01:00
|
|
|
.PHONY: text/template/check
|
|
|
|
|
|
|
|
@go_include@ text/template/parse.lo.dep
|
|
|
|
text/template/parse.lo.dep: $(go_text_template_parse_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
text/template/parse.lo: $(go_text_template_parse_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
text/template/parse/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: text/template/parse/check
|
2011-09-16 17:47:21 +02:00
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ testing/iotest.lo.dep
|
|
|
|
testing/iotest.lo.dep: $(go_testing_iotest_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
testing/iotest.lo: $(go_testing_iotest_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
testing/iotest/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: testing/iotest/check
|
|
|
|
|
2011-12-03 01:16:12 +01:00
|
|
|
@go_include@ testing/quick.lo.dep
|
|
|
|
testing/quick.lo.dep: $(go_testing_quick_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
testing/quick.lo: $(go_testing_quick_files)
|
2011-02-01 00:43:49 +01:00
|
|
|
$(BUILDPACKAGE)
|
2010-12-03 05:34:57 +01:00
|
|
|
testing/quick/check: $(CHECK_DEPS)
|
2011-04-02 02:29:49 +02:00
|
|
|
@$(CHECK)
|
2010-12-03 05:34:57 +01:00
|
|
|
.PHONY: testing/quick/check
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
@go_include@ unicode/utf16.lo.dep
|
|
|
|
unicode/utf16.lo.dep: $(go_unicode_utf16_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
unicode/utf16.lo: $(go_unicode_utf16_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
unicode/utf16/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: unicode/utf16/check
|
|
|
|
|
|
|
|
@go_include@ unicode/utf8.lo.dep
|
|
|
|
unicode/utf8.lo.dep: $(go_unicode_utf8_files)
|
|
|
|
$(BUILDDEPS)
|
|
|
|
unicode/utf8.lo: $(go_unicode_utf8_files)
|
|
|
|
$(BUILDPACKAGE)
|
|
|
|
unicode/utf8/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: unicode/utf8/check
|
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
@go_include@ syscall.lo.dep
|
|
|
|
syscall.lo.dep: $(go_syscall_files)
|
2011-12-03 01:16:12 +01:00
|
|
|
$(BUILDDEPS)
|
2012-05-15 00:08:42 +02:00
|
|
|
syscall.lo: $(go_syscall_files)
|
2011-03-11 02:00:15 +01:00
|
|
|
$(BUILDPACKAGE)
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall/errno.lo: go/syscall/errno.c
|
2012-05-15 00:08:42 +02:00
|
|
|
@$(MKDIR_P) syscall
|
2011-10-23 21:04:37 +02:00
|
|
|
$(LTCOMPILE) -c -o $@ $<
|
2012-03-02 17:38:43 +01:00
|
|
|
syscall/signame.lo: go/syscall/signame.c
|
2012-05-15 00:08:42 +02:00
|
|
|
@$(MKDIR_P) syscall
|
2012-03-02 17:38:43 +01:00
|
|
|
$(LTCOMPILE) -c -o $@ $<
|
2011-10-23 21:04:37 +02:00
|
|
|
syscall/wait.lo: go/syscall/wait.c
|
2012-05-15 00:08:42 +02:00
|
|
|
@$(MKDIR_P) syscall
|
2011-10-23 21:04:37 +02:00
|
|
|
$(LTCOMPILE) -c -o $@ $<
|
2012-10-23 06:31:11 +02:00
|
|
|
syscall/check: $(CHECK_DEPS)
|
|
|
|
@$(CHECK)
|
|
|
|
.PHONY: syscall/check
|
2011-03-11 02:00:15 +01:00
|
|
|
|
|
|
|
# How to build a .gox file from a .lo file.
|
2010-12-03 05:34:57 +01:00
|
|
|
BUILDGOX = \
|
2011-03-11 02:00:15 +01:00
|
|
|
f=`echo $< | sed -e 's/.lo$$/.o/'`; \
|
|
|
|
$(OBJCOPY) -j .go_export $$f $@.tmp && mv -f $@.tmp $@
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2012-05-15 00:08:42 +02:00
|
|
|
bufio.gox: bufio.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
bytes.gox: bytes.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
crypto.gox: crypto.lo
|
2011-03-17 00:05:44 +01:00
|
|
|
$(BUILDGOX)
|
2013-11-06 20:49:01 +01:00
|
|
|
encoding.gox: encoding.lo
|
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
errors.gox: errors.lo
|
2011-12-03 03:17:34 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
expvar.gox: expvar.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
flag.gox: flag.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
fmt.gox: fmt.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
hash.gox: hash.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
html.gox: html.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
image.gox: image.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
io.gox: io.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
log.gox: log.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
math.gox: math.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
mime.gox: mime.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
net.gox: net.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
os.gox: os.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
path.gox: path.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
reflect.gox: reflect-go.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
regexp.gox: regexp.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
runtime.gox: runtime-go.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
sort.gox: sort.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
strconv.gox: strconv.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
strings.gox: strings.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
sync.gox: sync.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
syscall.gox: syscall.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
testing.gox: testing.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
time.gox: time-go.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-05-15 00:08:42 +02:00
|
|
|
unicode.gox: unicode.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
archive/tar.gox: archive/tar.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
archive/zip.gox: archive/zip.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/bzip2.gox: compress/bzip2.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
compress/flate.gox: compress/flate.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
compress/gzip.gox: compress/gzip.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/lzw.gox: compress/lzw.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
compress/zlib.gox: compress/zlib.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
container/heap.gox: container/heap.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
container/list.gox: container/list.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
container/ring.gox: container/ring.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/aes.gox: crypto/aes.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/cipher.gox: crypto/cipher.lo
|
2011-01-21 19:19:03 +01:00
|
|
|
$(BUILDGOX)
|
2011-04-07 19:09:10 +02:00
|
|
|
crypto/des.gox: crypto/des.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-17 00:05:44 +01:00
|
|
|
crypto/dsa.gox: crypto/dsa.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-25 00:46:17 +01:00
|
|
|
crypto/ecdsa.gox: crypto/ecdsa.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/elliptic.gox: crypto/elliptic.lo
|
2011-01-21 19:19:03 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/hmac.gox: crypto/hmac.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/md5.gox: crypto/md5.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/rand.gox: crypto/rand.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/rc4.gox: crypto/rc4.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/rsa.gox: crypto/rsa.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/sha1.gox: crypto/sha1.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/sha256.gox: crypto/sha256.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/sha512.gox: crypto/sha512.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/subtle.gox: crypto/subtle.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/tls.gox: crypto/tls.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
crypto/x509.gox: crypto/x509.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-01-21 19:19:03 +01:00
|
|
|
|
2011-09-16 17:47:21 +02:00
|
|
|
crypto/x509/pkix.gox: crypto/x509/pkix.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2012-01-25 22:54:22 +01:00
|
|
|
database/sql.gox: database/sql.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
|
|
|
database/sql/driver.gox: database/sql/driver.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
debug/dwarf.gox: debug/dwarf.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
debug/elf.gox: debug/elf.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2014-06-05 01:15:33 +02:00
|
|
|
debug/goobj.gox: debug/goobj.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
debug/gosym.gox: debug/gosym.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
debug/macho.gox: debug/macho.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
debug/pe.gox: debug/pe.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2014-06-07 00:37:27 +02:00
|
|
|
debug/plan9obj.gox: debug/plan9obj.lo
|
|
|
|
$(BUILDGOX)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/ascii85.gox: encoding/ascii85.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/asn1.gox: encoding/asn1.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/base32.gox: encoding/base32.lo
|
2011-01-21 19:19:03 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/base64.gox: encoding/base64.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/binary.gox: encoding/binary.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/csv.gox: encoding/csv.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
encoding/gob.gox: encoding/gob.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/hex.gox: encoding/hex.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/json.gox: encoding/json.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
encoding/pem.gox: encoding/pem.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/xml.gox: encoding/xml.lo
|
|
|
|
$(BUILDGOX)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2012-01-25 21:56:26 +01:00
|
|
|
exp/proxy.gox: exp/proxy.lo
|
|
|
|
$(BUILDGOX)
|
2013-01-29 21:52:43 +01:00
|
|
|
exp/terminal.gox: exp/terminal.lo
|
2011-09-16 17:47:21 +02:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
html/template.gox: html/template.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
go/ast.gox: go/ast.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-09-16 17:47:21 +02:00
|
|
|
go/build.gox: go/build.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
go/doc.gox: go/doc.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2012-12-13 00:13:29 +01:00
|
|
|
go/format.gox: go/format.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
go/parser.gox: go/parser.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
go/printer.gox: go/printer.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
go/scanner.gox: go/scanner.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
go/token.gox: go/token.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
hash/adler32.gox: hash/adler32.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
hash/crc32.gox: hash/crc32.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
hash/crc64.gox: hash/crc64.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-25 00:46:17 +01:00
|
|
|
hash/fnv.gox: hash/fnv.lo
|
|
|
|
$(BUILDGOX)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-10-27 01:57:58 +02:00
|
|
|
image/color.gox: image/color.lo
|
|
|
|
$(BUILDGOX)
|
2011-09-16 17:47:21 +02:00
|
|
|
image/draw.gox: image/draw.lo
|
|
|
|
$(BUILDGOX)
|
2011-05-20 02:18:15 +02:00
|
|
|
image/gif.gox: image/gif.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
image/jpeg.gox: image/jpeg.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
image/png.gox: image/png.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2013-11-06 20:49:01 +01:00
|
|
|
image/color/palette.gox: image/color/palette.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
index/suffixarray.gox: index/suffixarray.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
io/ioutil.gox: io/ioutil.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
log/syslog.gox: log/syslog.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
|
|
|
math/big.gox: math/big.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
math/cmplx.gox: math/cmplx.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
math/rand.gox: math/rand.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
mime/multipart.gox: mime/multipart.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http.gox: net/http.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
net/mail.gox: net/mail.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
net/rpc.gox: net/rpc.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
net/smtp.gox: net/smtp.lo
|
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
net/textproto.gox: net/textproto.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-12-07 02:11:29 +01:00
|
|
|
net/url.gox: net/url.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
|
|
|
net/http/cgi.gox: net/http/cgi.lo
|
|
|
|
$(BUILDGOX)
|
2013-07-16 08:54:42 +02:00
|
|
|
net/http/cookiejar.gox: net/http/cookiejar.lo
|
|
|
|
$(BUILDGOX)
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http/fcgi.gox: net/http/fcgi.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
net/http/httptest.gox: net/http/httptest.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
net/http/httputil.gox: net/http/httputil.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
net/http/pprof.gox: net/http/pprof.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
|
|
|
net/rpc/jsonrpc.gox: net/rpc/jsonrpc.lo
|
|
|
|
$(BUILDGOX)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-10-27 01:57:58 +02:00
|
|
|
old/regexp.gox: old/regexp.lo
|
|
|
|
$(BUILDGOX)
|
2011-09-16 17:47:21 +02:00
|
|
|
old/template.gox: old/template.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
os/exec.gox: os/exec.lo
|
|
|
|
$(BUILDGOX)
|
2012-03-02 17:38:43 +01:00
|
|
|
os/signal.gox: os/signal.lo
|
|
|
|
$(BUILDGOX)
|
2011-05-20 02:18:15 +02:00
|
|
|
os/user.gox: os/user.lo
|
|
|
|
$(BUILDGOX)
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-03-25 00:46:17 +01:00
|
|
|
path/filepath.gox: path/filepath.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-10-27 01:57:58 +02:00
|
|
|
regexp/syntax.gox: regexp/syntax.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
runtime/debug.gox: runtime/debug.lo
|
2011-01-21 19:19:03 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
runtime/pprof.gox: runtime/pprof.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-17 00:05:44 +01:00
|
|
|
sync/atomic.gox: sync/atomic.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
text/scanner.gox: text/scanner.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
text/tabwriter.gox: text/tabwriter.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
text/template.gox: text/template.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
text/template/parse.gox: text/template/parse.lo
|
2011-09-16 17:47:21 +02:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-03-11 02:00:15 +01:00
|
|
|
testing/iotest.gox: testing/iotest.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
2011-03-11 02:00:15 +01:00
|
|
|
testing/quick.gox: testing/quick.lo
|
2010-12-03 05:34:57 +01:00
|
|
|
$(BUILDGOX)
|
|
|
|
|
2011-12-07 02:11:29 +01:00
|
|
|
unicode/utf16.gox: unicode/utf16.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
unicode/utf8.gox: unicode/utf8.lo
|
|
|
|
$(BUILDGOX)
|
|
|
|
|
2010-12-03 05:34:57 +01:00
|
|
|
TEST_PACKAGES = \
|
|
|
|
bufio/check \
|
|
|
|
bytes/check \
|
2011-12-03 03:17:34 +01:00
|
|
|
errors/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
expvar/check \
|
|
|
|
flag/check \
|
|
|
|
fmt/check \
|
|
|
|
html/check \
|
2011-09-16 17:47:21 +02:00
|
|
|
image/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
io/check \
|
|
|
|
log/check \
|
|
|
|
math/check \
|
|
|
|
mime/check \
|
2011-04-02 02:29:49 +02:00
|
|
|
net/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
os/check \
|
|
|
|
path/check \
|
|
|
|
reflect/check \
|
|
|
|
regexp/check \
|
|
|
|
runtime/check \
|
|
|
|
sort/check \
|
|
|
|
strconv/check \
|
|
|
|
strings/check \
|
|
|
|
sync/check \
|
2012-10-23 06:31:11 +02:00
|
|
|
syscall/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
time/check \
|
|
|
|
unicode/check \
|
|
|
|
archive/tar/check \
|
|
|
|
archive/zip/check \
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/bzip2/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
compress/flate/check \
|
|
|
|
compress/gzip/check \
|
2011-03-17 00:05:44 +01:00
|
|
|
compress/lzw/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
compress/zlib/check \
|
|
|
|
container/heap/check \
|
|
|
|
container/list/check \
|
|
|
|
container/ring/check \
|
|
|
|
crypto/aes/check \
|
2011-01-21 19:19:03 +01:00
|
|
|
crypto/cipher/check \
|
2011-04-07 19:09:10 +02:00
|
|
|
crypto/des/check \
|
2011-03-17 00:05:44 +01:00
|
|
|
crypto/dsa/check \
|
2011-03-25 00:46:17 +01:00
|
|
|
crypto/ecdsa/check \
|
2011-01-21 19:19:03 +01:00
|
|
|
crypto/elliptic/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
crypto/hmac/check \
|
|
|
|
crypto/md5/check \
|
|
|
|
crypto/rand/check \
|
|
|
|
crypto/rc4/check \
|
|
|
|
crypto/rsa/check \
|
|
|
|
crypto/sha1/check \
|
|
|
|
crypto/sha256/check \
|
|
|
|
crypto/sha512/check \
|
|
|
|
crypto/subtle/check \
|
|
|
|
crypto/tls/check \
|
|
|
|
crypto/x509/check \
|
2012-01-25 22:54:22 +01:00
|
|
|
database/sql/check \
|
|
|
|
database/sql/driver/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
debug/dwarf/check \
|
|
|
|
debug/elf/check \
|
|
|
|
debug/macho/check \
|
|
|
|
debug/pe/check \
|
2014-06-07 00:37:27 +02:00
|
|
|
debug/plan9obj/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/ascii85/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/asn1/check \
|
2011-01-21 19:19:03 +01:00
|
|
|
encoding/base32/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/base64/check \
|
|
|
|
encoding/binary/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/csv/check \
|
|
|
|
encoding/gob/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/hex/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/json/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
encoding/pem/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
encoding/xml/check \
|
2012-01-25 21:56:26 +01:00
|
|
|
exp/proxy/check \
|
2011-10-27 01:57:58 +02:00
|
|
|
exp/terminal/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
html/template/check \
|
2011-05-20 02:18:15 +02:00
|
|
|
go/ast/check \
|
2011-09-16 17:47:21 +02:00
|
|
|
$(go_build_check_omitted_since_it_calls_6g) \
|
2011-12-13 20:16:27 +01:00
|
|
|
go/doc/check \
|
2012-12-13 00:13:29 +01:00
|
|
|
go/format/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
go/parser/check \
|
|
|
|
go/printer/check \
|
|
|
|
go/scanner/check \
|
2011-01-21 19:19:03 +01:00
|
|
|
go/token/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
hash/adler32/check \
|
|
|
|
hash/crc32/check \
|
|
|
|
hash/crc64/check \
|
2011-03-25 00:46:17 +01:00
|
|
|
hash/fnv/check \
|
2012-01-13 06:11:45 +01:00
|
|
|
image/color/check \
|
2011-09-16 17:47:21 +02:00
|
|
|
image/draw/check \
|
2011-05-20 02:18:15 +02:00
|
|
|
image/jpeg/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
image/png/check \
|
|
|
|
index/suffixarray/check \
|
|
|
|
io/ioutil/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
log/syslog/check \
|
|
|
|
math/big/check \
|
|
|
|
math/cmplx/check \
|
|
|
|
math/rand/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
mime/multipart/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http/check \
|
|
|
|
net/http/cgi/check \
|
2013-07-16 08:54:42 +02:00
|
|
|
net/http/cookiejar/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http/fcgi/check \
|
2012-03-02 17:38:43 +01:00
|
|
|
net/http/httptest/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/http/httputil/check \
|
|
|
|
net/mail/check \
|
|
|
|
net/rpc/check \
|
|
|
|
net/smtp/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
net/textproto/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
net/url/check \
|
|
|
|
net/rpc/jsonrpc/check \
|
2011-10-27 01:57:58 +02:00
|
|
|
old/regexp/check \
|
2011-09-16 17:47:21 +02:00
|
|
|
old/template/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
os/exec/check \
|
2012-03-02 17:38:43 +01:00
|
|
|
os/signal/check \
|
2011-05-20 02:18:15 +02:00
|
|
|
os/user/check \
|
2011-03-25 00:46:17 +01:00
|
|
|
path/filepath/check \
|
2011-10-27 01:57:58 +02:00
|
|
|
regexp/syntax/check \
|
2012-07-26 03:57:04 +02:00
|
|
|
runtime/pprof/check \
|
2011-03-17 00:05:44 +01:00
|
|
|
sync/atomic/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
text/scanner/check \
|
|
|
|
text/tabwriter/check \
|
|
|
|
text/template/check \
|
|
|
|
text/template/parse/check \
|
2010-12-03 05:34:57 +01:00
|
|
|
testing/quick/check \
|
2011-12-07 02:11:29 +01:00
|
|
|
unicode/utf16/check \
|
|
|
|
unicode/utf8/check
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2011-04-22 20:38:24 +02:00
|
|
|
check: check-tail
|
|
|
|
check-recursive: check-head
|
|
|
|
|
|
|
|
check-head:
|
|
|
|
@echo "Test Run By $${USER} on `date`" > libgo.head
|
|
|
|
@echo "Native configuration is $(host_triplet)" >> libgo.head
|
|
|
|
@echo >> libgo.head
|
|
|
|
@echo " === libgo tests ===" >> libgo.head
|
|
|
|
@echo >> libgo.head
|
|
|
|
|
|
|
|
check-tail: check-recursive check-multi
|
2013-02-10 00:19:33 +01:00
|
|
|
@if test "$(USE_DEJAGNU)" = "yes"; then \
|
|
|
|
exit 0; \
|
|
|
|
fi; \
|
|
|
|
lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
|
2011-04-22 20:38:24 +02:00
|
|
|
for dir in . $(MULTIDIRS); do \
|
|
|
|
mv ../$${dir}/$${lib}/libgo.sum ../$${dir}/$${lib}/libgo.sum.sep; \
|
|
|
|
mv ../$${dir}/$${lib}/libgo.log ../$${dir}/$${lib}/libgo.log.sep; \
|
|
|
|
done; \
|
|
|
|
mv libgo.head libgo.sum; \
|
|
|
|
cp libgo.sum libgo.log; \
|
|
|
|
echo "Schedule of variations:" >> libgo.sum; \
|
|
|
|
for dir in . $(MULTIDIRS); do \
|
|
|
|
multidir=../$${dir}/$${lib}; \
|
|
|
|
multivar=`cat $${multidir}/libgo.var`; \
|
|
|
|
echo " $${multivar}" >> libgo.sum; \
|
|
|
|
done; \
|
|
|
|
echo >> libgo.sum; \
|
|
|
|
pass=0; fail=0; untested=0; \
|
|
|
|
for dir in . $(MULTIDIRS); do \
|
|
|
|
multidir=../$${dir}/$${lib}; \
|
|
|
|
multivar=`cat $${multidir}/libgo.var`; \
|
|
|
|
echo "Running target $${multivar}" >> libgo.sum; \
|
|
|
|
echo "Running $(srcdir)/libgo.exp ..." >> libgo.sum; \
|
|
|
|
cat $${multidir}/libgo.sum.sep >> libgo.sum; \
|
|
|
|
cat $${multidir}/libgo.log.sep >> libgo.log; \
|
|
|
|
if test -n "${MULTIDIRS}"; then \
|
|
|
|
echo " === libgo Summary for $${multivar} ===" >> libgo.sum; \
|
|
|
|
echo >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
p=`grep -c PASS $${multidir}/libgo.sum.sep`; \
|
|
|
|
pass=`expr $$pass + $$p`; \
|
|
|
|
if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
|
|
|
|
echo "# of expected passes $$p" >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
p=`grep -c FAIL $${multidir}/libgo.sum.sep`; \
|
|
|
|
fail=`expr $$fail + $$p`; \
|
|
|
|
if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
|
|
|
|
echo "# of unexpected failures $$p" >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
p=`grep -c UNTESTED $${multidir}/libgo.sum.sep`; \
|
|
|
|
untested=`expr $$untested + $$p`; \
|
|
|
|
if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
|
|
|
|
echo "# of untested testcases $$p" >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
done; \
|
|
|
|
echo >> libgo.sum; \
|
|
|
|
echo " === libgo Summary ===" >> libgo.sum; \
|
|
|
|
echo >> libgo.sum; \
|
|
|
|
if test "$$pass" -ne "0"; then \
|
|
|
|
echo "# of expected passes $$pass" >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
if test "$$fail" -ne "0"; then \
|
|
|
|
echo "# of unexpected failures $$fail" >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
if test "$$untested" -ne "0"; then \
|
|
|
|
echo "# of untested testcases $$untested" >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
echo `echo $(GOC) | sed -e 's/ .*//'` `$(GOC) -v 2>&1 | grep " version" | sed -n -e 's/.* \(version.*$$\)/\1/p'` >> libgo.sum; \
|
|
|
|
echo >> libgo.log; \
|
|
|
|
echo "runtest completed at `date`" >> libgo.log; \
|
|
|
|
if test "$$fail" -ne "0"; then \
|
|
|
|
status=1; \
|
|
|
|
else \
|
|
|
|
status=0; \
|
|
|
|
fi; \
|
|
|
|
exit $$status
|
|
|
|
|
2011-03-31 18:11:56 +02:00
|
|
|
check-am:
|
2011-04-02 02:29:49 +02:00
|
|
|
@rm -f libgo.sum libgo.log libgo.tail
|
2011-04-22 20:38:24 +02:00
|
|
|
@multivar="unix"; \
|
|
|
|
[ -z "$(MULTIFLAGS)" ] || multivar="$${multivar}/$(MULTIFLAGS)"; \
|
|
|
|
echo "$${multivar}" > libgo.var
|
2011-04-02 02:29:49 +02:00
|
|
|
@for f in $(TEST_PACKAGES); do \
|
|
|
|
rm -f $$f-testsum $$f-testlog; \
|
|
|
|
done
|
2011-04-22 20:38:24 +02:00
|
|
|
-@$(MAKE) -k $(TEST_PACKAGES)
|
|
|
|
@for f in $(TEST_PACKAGES); do \
|
2011-04-02 02:29:49 +02:00
|
|
|
if test -f $$f-testsum; then \
|
|
|
|
cat $$f-testsum >> libgo.sum; \
|
|
|
|
fi; \
|
|
|
|
if test -f $$f-testlog; then \
|
|
|
|
cat $$f-testlog >> libgo.log; \
|
|
|
|
fi; \
|
2011-04-22 20:38:24 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
check-multi:
|
|
|
|
$(MULTIDO) $(AM_MAKEFLAGS) DO=check-am multi-do # $(MAKE)
|
2011-03-31 18:11:56 +02:00
|
|
|
|
2011-04-22 20:38:24 +02:00
|
|
|
MOSTLYCLEAN_FILES = libgo.head libgo.sum.sep libgo.log.sep
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
mostlyclean-local:
|
|
|
|
find . -name '*.lo' -print | xargs $(LIBTOOL) --mode=clean rm -f
|
|
|
|
find . -name '*.$(OBJEXT)' -print | xargs rm -f
|
2011-04-02 02:29:49 +02:00
|
|
|
find . -name '*-testsum' -print | xargs rm -f
|
2011-03-31 18:11:56 +02:00
|
|
|
find . -name '*-testlog' -print | xargs rm -f
|
|
|
|
|
|
|
|
CLEANFILES = *.go *.gox goc2c *.c s-version libgo.sum libgo.log
|
2010-12-03 05:34:57 +01:00
|
|
|
|
|
|
|
clean-local:
|
|
|
|
find . -name '*.la' -print | xargs $(LIBTOOL) --mode=clean rm -f
|
|
|
|
find . -name '*.a' -print | xargs rm -f
|