OSDN Git Service

libgo: Update to weekly.2011-12-02.
[pf3gnuchains/gcc-fork.git] / libgo / Makefile.am
1 # Makefile.am -- Go library Makefile.
2
3 # Copyright 2009 The Go Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style
5 # license that can be found in the LICENSE file.
6
7 # Process this file with autoreconf to produce Makefile.in.
8
9 # Go support.
10 SUFFIXES = .c .go .gox .o .obj .lo .a
11
12 if LIBGO_IS_RTEMS
13 subdirs = testsuite
14 endif
15
16 SUBDIRS = ${subdirs}
17
18 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
19
20 MAINT_CHARSET = latin1
21
22 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
23 PWD_COMMAND = $${PWDCMD-pwd}
24 STAMP = echo timestamp >
25
26 toolexecdir = $(glibgo_toolexecdir)
27 toolexeclibdir = $(glibgo_toolexeclibdir)
28
29 LIBFFI = @LIBFFI@
30 LIBFFIINCS = @LIBFFIINCS@
31
32 WARN_CFLAGS = $(WARN_FLAGS) $(WERROR)
33
34 # -I/-D flags to pass when compiling.
35 AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS)
36
37 ACLOCAL_AMFLAGS = -I ./config -I ../config
38
39 AM_CFLAGS = -fexceptions -fplan9-extensions $(SPLIT_STACK) $(WARN_CFLAGS) \
40         $(STRINGOPS_FLAG) \
41         -I $(srcdir)/../libgcc -I $(MULTIBUILDTOP)../../gcc/include
42
43 if USING_SPLIT_STACK
44 AM_LDFLAGS = -XCClinker $(SPLIT_STACK)
45 endif
46
47 # Multilib support.
48 MAKEOVERRIDES=
49
50 # Work around what appears to be a GNU make  handling MAKEFLAGS
51 # values defined in terms of make variables, as is the case for CC and
52 # friends when we are called from the top level Makefile.
53 AM_MAKEFLAGS = \
54         "AR_FLAGS=$(AR_FLAGS)" \
55         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
56         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
57         "CFLAGS=$(CFLAGS)" \
58         "CXXFLAGS=$(CXXFLAGS)" \
59         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
60         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
61         "GOC_FOR_TARGET=$(GOC_FOR_TARGET)" \
62         "GOC=$(GOC)" \
63         "GOCFLAGS=$(GOCFLAGS)" \
64         "INSTALL=$(INSTALL)" \
65         "INSTALL_DATA=$(INSTALL_DATA)" \
66         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
67         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
68         "LDFLAGS=$(LDFLAGS)" \
69         "LIBCFLAGS=$(LIBCFLAGS)" \
70         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
71         "MAKE=$(MAKE)" \
72         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
73         "PICFLAG=$(PICFLAG)" \
74         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
75         "SHELL=$(SHELL)" \
76         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
77         "exec_prefix=$(exec_prefix)" \
78         "infodir=$(infodir)" \
79         "libdir=$(libdir)" \
80         "includedir=$(includedir)" \
81         "prefix=$(prefix)" \
82         "tooldir=$(tooldir)" \
83         "gxx_include_dir=$(gxx_include_dir)" \
84         "AR=$(AR)" \
85         "AS=$(AS)" \
86         "LD=$(LD)" \
87         "RANLIB=$(RANLIB)" \
88         "NM=$(NM)" \
89         "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
90         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
91         "DESTDIR=$(DESTDIR)" \
92         "WERROR=$(WERROR)"
93
94 # Subdir rules rely on $(FLAGS_TO_PASS)
95 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
96
97 toolexeclib_LTLIBRARIES = libgo.la
98 toolexeclib_LIBRARIES = libgobegin.a
99
100 toolexeclibgodir = $(toolexeclibdir)/go/$(gcc_version)/$(target_alias)
101
102 toolexeclibgo_DATA = \
103         bufio.gox \
104         bytes.gox \
105         crypto.gox \
106         errors.gox \
107         expvar.gox \
108         flag.gox \
109         fmt.gox \
110         hash.gox \
111         html.gox \
112         image.gox \
113         io.gox \
114         log.gox \
115         math.gox \
116         mime.gox \
117         net.gox \
118         os.gox \
119         patch.gox \
120         path.gox \
121         reflect.gox \
122         regexp.gox \
123         runtime.gox \
124         sort.gox \
125         strconv.gox \
126         strings.gox \
127         sync.gox \
128         syscall.gox \
129         testing.gox \
130         time.gox \
131         unicode.gox \
132         websocket.gox
133
134 toolexeclibgoarchivedir = $(toolexeclibgodir)/archive
135
136 toolexeclibgoarchive_DATA = \
137         archive/tar.gox \
138         archive/zip.gox
139
140 toolexeclibgocompressdir = $(toolexeclibgodir)/compress
141
142 toolexeclibgocompress_DATA = \
143         compress/bzip2.gox \
144         compress/flate.gox \
145         compress/gzip.gox \
146         compress/lzw.gox \
147         compress/zlib.gox
148
149 toolexeclibgocontainerdir = $(toolexeclibgodir)/container
150
151 toolexeclibgocontainer_DATA = \
152         container/heap.gox \
153         container/list.gox \
154         container/ring.gox
155
156 toolexeclibgocryptodir = $(toolexeclibgodir)/crypto
157
158 toolexeclibgocrypto_DATA = \
159         crypto/aes.gox \
160         crypto/bcrypt.gox \
161         crypto/blowfish.gox \
162         crypto/cast5.gox \
163         crypto/cipher.gox \
164         crypto/des.gox \
165         crypto/dsa.gox \
166         crypto/ecdsa.gox \
167         crypto/elliptic.gox \
168         crypto/hmac.gox \
169         crypto/md4.gox \
170         crypto/md5.gox \
171         crypto/ocsp.gox \
172         crypto/openpgp.gox \
173         crypto/rand.gox \
174         crypto/rc4.gox \
175         crypto/ripemd160.gox \
176         crypto/rsa.gox \
177         crypto/sha1.gox \
178         crypto/sha256.gox \
179         crypto/sha512.gox \
180         crypto/subtle.gox \
181         crypto/tls.gox \
182         crypto/twofish.gox \
183         crypto/x509.gox \
184         crypto/xtea.gox
185
186 toolexeclibgocryptoopenpgpdir = $(toolexeclibgocryptodir)/openpgp
187
188 toolexeclibgocryptoopenpgp_DATA = \
189         crypto/openpgp/armor.gox \
190         crypto/openpgp/elgamal.gox \
191         crypto/openpgp/error.gox \
192         crypto/openpgp/packet.gox \
193         crypto/openpgp/s2k.gox
194
195 toolexeclibgocryptox509dir = $(toolexeclibgocryptodir)/x509
196
197 toolexeclibgocryptox509_DATA = \
198         crypto/x509/pkix.gox
199
200 toolexeclibgodebugdir = $(toolexeclibgodir)/debug
201
202 toolexeclibgodebug_DATA = \
203         debug/dwarf.gox \
204         debug/elf.gox \
205         debug/gosym.gox \
206         debug/macho.gox \
207         debug/pe.gox
208
209 toolexeclibgoencodingdir = $(toolexeclibgodir)/encoding
210
211 toolexeclibgoencoding_DATA = \
212         encoding/ascii85.gox \
213         encoding/asn1.gox \
214         encoding/base32.gox \
215         encoding/base64.gox \
216         encoding/binary.gox \
217         encoding/csv.gox \
218         encoding/git85.gox \
219         encoding/gob.gox \
220         encoding/hex.gox \
221         encoding/json.gox \
222         encoding/pem.gox \
223         encoding/xml.gox
224
225 if LIBGO_IS_LINUX
226 # exp_inotify_gox = exp/inotify.gox
227 exp_inotify_gox =
228 else
229 exp_inotify_gox =
230 endif
231
232 toolexeclibgoexpdir = $(toolexeclibgodir)/exp
233
234 toolexeclibgoexp_DATA = \
235         exp/ebnf.gox \
236         $(exp_inotify_gox) \
237         exp/norm.gox \
238         exp/spdy.gox \
239         exp/sql.gox \
240         exp/ssh.gox \
241         exp/terminal.gox \
242         exp/types.gox
243
244 toolexeclibgoexpsqldir = $(toolexeclibgoexpdir)/sql
245
246 toolexeclibgoexpsql_DATA = \
247         exp/sql/driver.gox
248
249 toolexeclibgogodir = $(toolexeclibgodir)/go
250
251 toolexeclibgogo_DATA = \
252         go/ast.gox \
253         go/build.gox \
254         go/doc.gox \
255         go/parser.gox \
256         go/printer.gox \
257         go/scanner.gox \
258         go/token.gox
259
260 toolexeclibgohashdir = $(toolexeclibgodir)/hash
261
262 toolexeclibgohash_DATA = \
263         hash/adler32.gox \
264         hash/crc32.gox \
265         hash/crc64.gox \
266         hash/fnv.gox
267
268 toolexeclibgohtmldir = $(toolexeclibgodir)/html
269
270 toolexeclibgohtml_DATA = \
271         html/template.gox
272
273 toolexeclibgoimagedir = $(toolexeclibgodir)/image
274
275 toolexeclibgoimage_DATA = \
276         image/bmp.gox \
277         image/color.gox \
278         image/draw.gox \
279         image/gif.gox \
280         image/jpeg.gox \
281         image/png.gox \
282         image/tiff.gox \
283         image/ycbcr.gox
284
285 toolexeclibgoindexdir = $(toolexeclibgodir)/index
286
287 toolexeclibgoindex_DATA = \
288         index/suffixarray.gox
289
290 toolexeclibgoiodir = $(toolexeclibgodir)/io
291
292 toolexeclibgoio_DATA = \
293         io/ioutil.gox
294
295 toolexeclibgologdir = $(toolexeclibgodir)/log
296
297 toolexeclibgolog_DATA = \
298         log/syslog.gox
299
300 toolexeclibgomathdir = $(toolexeclibgodir)/math
301
302 toolexeclibgomath_DATA = \
303         math/big.gox \
304         math/cmplx.gox \
305         math/rand.gox
306
307 toolexeclibgomimedir = $(toolexeclibgodir)/mime
308
309 toolexeclibgomime_DATA = \
310         mime/multipart.gox
311
312 toolexeclibgonetdir = $(toolexeclibgodir)/net
313
314 toolexeclibgonet_DATA = \
315         net/dict.gox \
316         net/http.gox \
317         net/mail.gox \
318         net/rpc.gox \
319         net/smtp.gox \
320         net/textproto.gox \
321         net/url.gox
322
323 toolexeclibgonethttpdir = $(toolexeclibgonetdir)/http
324
325 toolexeclibgonethttp_DATA = \
326         net/http/cgi.gox \
327         net/http/fcgi.gox \
328         net/http/httptest.gox \
329         net/http/httputil.gox \
330         net/http/pprof.gox
331
332 toolexeclibgonetrpcdir = $(toolexeclibgonetdir)/rpc
333
334 toolexeclibgonetrpc_DATA = \
335         net/rpc/jsonrpc.gox
336
337 toolexeclibgoolddir = $(toolexeclibgodir)/old
338
339 toolexeclibgoold_DATA = \
340         old/netchan.gox \
341         old/regexp.gox \
342         old/template.gox
343
344 toolexeclibgoosdir = $(toolexeclibgodir)/os
345
346 toolexeclibgoos_DATA = \
347         os/exec.gox \
348         os/user.gox \
349         os/signal.gox
350
351 toolexeclibgopathdir = $(toolexeclibgodir)/path
352
353 toolexeclibgopath_DATA = \
354         path/filepath.gox
355
356 toolexeclibgoregexpdir = $(toolexeclibgodir)/regexp
357
358 toolexeclibgoregexp_DATA = \
359         regexp/syntax.gox
360
361 toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime
362
363 toolexeclibgoruntime_DATA = \
364         runtime/debug.gox \
365         runtime/pprof.gox
366
367 toolexeclibgosyncdir = $(toolexeclibgodir)/sync
368
369 toolexeclibgosync_DATA = \
370         sync/atomic.gox
371
372 toolexeclibgotestingdir = $(toolexeclibgodir)/testing
373
374 toolexeclibgotesting_DATA = \
375         testing/iotest.gox \
376         testing/quick.gox \
377         testing/script.gox
378
379 toolexeclibgotextdir = $(toolexeclibgodir)/text
380
381 toolexeclibgotext_DATA = \
382         text/scanner.gox \
383         text/tabwriter.gox \
384         text/template.gox
385
386 toolexeclibgotexttemplatedir = $(toolexeclibgotextdir)/template
387
388 toolexeclibgotexttemplate_DATA = \
389         text/template/parse.gox
390
391 toolexeclibgounicodedir = $(toolexeclibgodir)/unicode
392
393 toolexeclibgounicode_DATA = \
394         unicode/utf16.gox \
395         unicode/utf8.gox
396
397 if HAVE_SYS_MMAN_H
398 runtime_mem_file = runtime/mem.c
399 else
400 runtime_mem_file = runtime/mem_posix_memalign.c
401 endif
402
403 if LIBGO_IS_RTEMS
404 rtems_task_variable_add_file = runtime/rtems-task-variable-add.c
405 else
406 rtems_task_variable_add_file =
407 endif
408
409 if LIBGO_IS_LINUX
410 runtime_lock_files = runtime/lock_futex.c runtime/thread-linux.c
411 else
412 runtime_lock_files = runtime/lock_sema.c runtime/thread-sema.c
413 endif
414
415 runtime_files = \
416         runtime/go-append.c \
417         runtime/go-assert.c \
418         runtime/go-assert-interface.c \
419         runtime/go-byte-array-to-string.c \
420         runtime/go-breakpoint.c \
421         runtime/go-caller.c \
422         runtime/go-can-convert-interface.c \
423         runtime/go-cgo.c \
424         runtime/go-check-interface.c \
425         runtime/go-construct-map.c \
426         runtime/go-convert-interface.c \
427         runtime/go-copy.c \
428         runtime/go-defer.c \
429         runtime/go-deferred-recover.c \
430         runtime/go-eface-compare.c \
431         runtime/go-eface-val-compare.c \
432         runtime/go-getgoroot.c \
433         runtime/go-int-array-to-string.c \
434         runtime/go-int-to-string.c \
435         runtime/go-interface-compare.c \
436         runtime/go-interface-eface-compare.c \
437         runtime/go-interface-val-compare.c \
438         runtime/go-make-slice.c \
439         runtime/go-map-delete.c \
440         runtime/go-map-index.c \
441         runtime/go-map-len.c \
442         runtime/go-map-range.c \
443         runtime/go-nanotime.c \
444         runtime/go-now.c \
445         runtime/go-new-map.c \
446         runtime/go-new.c \
447         runtime/go-panic.c \
448         runtime/go-print.c \
449         runtime/go-recover.c \
450         runtime/go-reflect.c \
451         runtime/go-reflect-call.c \
452         runtime/go-reflect-map.c \
453         runtime/go-rune.c \
454         runtime/go-runtime-error.c \
455         runtime/go-setenv.c \
456         runtime/go-signal.c \
457         runtime/go-strcmp.c \
458         runtime/go-string-to-byte-array.c \
459         runtime/go-string-to-int-array.c \
460         runtime/go-strplus.c \
461         runtime/go-strslice.c \
462         runtime/go-trampoline.c \
463         runtime/go-type-eface.c \
464         runtime/go-type-error.c \
465         runtime/go-type-identity.c \
466         runtime/go-type-interface.c \
467         runtime/go-type-string.c \
468         runtime/go-typedesc-equal.c \
469         runtime/go-typestring.c \
470         runtime/go-unreflect.c \
471         runtime/go-unsafe-new.c \
472         runtime/go-unsafe-newarray.c \
473         runtime/go-unsafe-pointer.c \
474         runtime/go-unwind.c \
475         runtime/chan.c \
476         runtime/cpuprof.c \
477         $(runtime_lock_files) \
478         runtime/mcache.c \
479         runtime/mcentral.c \
480         $(runtime_mem_file) \
481         runtime/mfinal.c \
482         runtime/mfixalloc.c \
483         runtime/mgc0.c \
484         runtime/mheap.c \
485         runtime/msize.c \
486         runtime/proc.c \
487         runtime/runtime.c \
488         runtime/thread.c \
489         runtime/yield.c \
490         $(rtems_task_variable_add_file) \
491         iface.c \
492         malloc.c \
493         map.c \
494         mprof.c \
495         reflect.c \
496         runtime1.c \
497         sema.c \
498         sigqueue.c \
499         string.c \
500         time.c
501
502 goc2c.$(OBJEXT): runtime/goc2c.c
503         $(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) $<
504
505 goc2c: goc2c.$(OBJEXT)
506         $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $<
507
508 malloc.c: $(srcdir)/runtime/malloc.goc goc2c
509         ./goc2c --gcc --go-prefix libgo_runtime $< > $@.tmp
510         mv -f $@.tmp $@
511
512 mprof.c: $(srcdir)/runtime/mprof.goc goc2c
513         ./goc2c --gcc --go-prefix libgo_runtime $< > $@.tmp
514         mv -f $@.tmp $@
515
516 reflect.c: $(srcdir)/runtime/reflect.goc goc2c
517         ./goc2c --gcc --go-prefix libgo_reflect $< > $@.tmp
518         mv -f $@.tmp $@
519
520 runtime1.c: $(srcdir)/runtime/runtime1.goc goc2c
521         ./goc2c --gcc --go-prefix libgo_runtime $< > $@.tmp
522         mv -f $@.tmp $@
523
524 sema.c: $(srcdir)/runtime/sema.goc goc2c
525         ./goc2c --gcc --go-prefix libgo_runtime $< > $@.tmp
526         mv -f $@.tmp $@
527
528 sigqueue.c: $(srcdir)/runtime/sigqueue.goc goc2c
529         ./goc2c --gcc --go-prefix libgo_runtime $< > $@.tmp
530         mv -f $@.tmp $@
531
532 time.c: $(srcdir)/runtime/time.goc goc2c
533         ./goc2c --gcc --go-prefix libgo_time $< > $@.tmp
534         mv -f $@.tmp $@
535
536 %.c: $(srcdir)/runtime/%.goc goc2c
537         ./goc2c --gcc $< > $@.tmp
538         mv -f $@.tmp $@
539
540 go_bufio_files = \
541         go/bufio/bufio.go
542
543 go_bytes_files = \
544         go/bytes/buffer.go \
545         go/bytes/bytes.go \
546         go/bytes/bytes_decl.go
547 go_bytes_c_files = \
548         go/bytes/indexbyte.c
549
550 go_crypto_files = \
551         go/crypto/crypto.go
552
553 go_errors_files = \
554         go/errors/errors.go
555
556 go_expvar_files = \
557         go/expvar/expvar.go
558
559 go_flag_files = \
560         go/flag/flag.go
561
562 go_fmt_files = \
563         go/fmt/doc.go \
564         go/fmt/format.go \
565         go/fmt/print.go \
566         go/fmt/scan.go
567
568 go_hash_files = \
569         go/hash/hash.go
570
571 go_html_files = \
572         go/html/const.go \
573         go/html/doc.go \
574         go/html/doctype.go \
575         go/html/entity.go \
576         go/html/escape.go \
577         go/html/node.go \
578         go/html/parse.go \
579         go/html/render.go \
580         go/html/token.go
581
582 go_image_files = \
583         go/image/format.go \
584         go/image/geom.go \
585         go/image/image.go \
586         go/image/names.go
587
588 go_io_files = \
589         go/io/multi.go \
590         go/io/io.go \
591         go/io/pipe.go
592
593 go_log_files = \
594         go/log/log.go
595
596 go_math_files = \
597         go/math/abs.go \
598         go/math/acosh.go \
599         go/math/asin.go \
600         go/math/asinh.go \
601         go/math/atan.go \
602         go/math/atanh.go \
603         go/math/atan2.go \
604         go/math/bits.go \
605         go/math/cbrt.go \
606         go/math/const.go \
607         go/math/copysign.go \
608         go/math/dim.go \
609         go/math/erf.go \
610         go/math/exp.go \
611         go/math/exp_port.go \
612         go/math/exp2.go \
613         go/math/expm1.go \
614         go/math/floor.go \
615         go/math/frexp.go \
616         go/math/gamma.go \
617         go/math/hypot.go \
618         go/math/hypot_port.go \
619         go/math/j0.go \
620         go/math/j1.go \
621         go/math/jn.go \
622         go/math/ldexp.go \
623         go/math/lgamma.go \
624         go/math/log.go \
625         go/math/log1p.go \
626         go/math/log10.go \
627         go/math/logb.go \
628         go/math/mod.go \
629         go/math/modf.go \
630         go/math/nextafter.go \
631         go/math/pow.go \
632         go/math/pow10.go \
633         go/math/remainder.go \
634         go/math/signbit.go \
635         go/math/sin.go \
636         go/math/sincos.go \
637         go/math/sinh.go \
638         go/math/sqrt.go \
639         go/math/sqrt_port.go \
640         go/math/tan.go \
641         go/math/tanh.go \
642         go/math/unsafe.go
643
644 go_mime_files = \
645         go/mime/grammar.go \
646         go/mime/mediatype.go \
647         go/mime/type.go \
648         go/mime/type_unix.go
649
650 if LIBGO_IS_RTEMS
651 go_net_fd_os_file = go/net/fd_select.go
652 go_net_newpollserver_file = go/net/newpollserver_rtems.go
653 else # !LIBGO_IS_RTEMS
654 if LIBGO_IS_LINUX
655 go_net_fd_os_file = go/net/fd_linux.go
656 go_net_newpollserver_file = go/net/newpollserver.go
657 else # !LIBGO_IS_LINUX && !LIBGO_IS_RTEMS
658 # By default use select with pipes.  Most systems should have
659 # something better.
660 go_net_fd_os_file = go/net/fd_select.go
661 go_net_newpollserver_file = go/net/newpollserver.go
662 endif # !LIBGO_IS_LINUX
663 endif # !LIBGO_IS_RTEMS
664
665 if LIBGO_IS_LINUX
666 go_net_cgo_file = go/net/cgo_linux.go
667 go_net_sock_file = go/net/sock_linux.go
668 else
669 if LIBGO_IS_IRIX
670 go_net_cgo_file = go/net/cgo_linux.go
671 go_net_sock_file = go/net/sock_linux.go
672 else
673 if LIBGO_IS_SOLARIS
674 go_net_cgo_file = go/net/cgo_linux.go
675 go_net_sock_file = go/net/sock_linux.go
676 else
677 go_net_cgo_file = go/net/cgo_bsd.go
678 go_net_sock_file = go/net/sock_bsd.go
679 endif
680 endif
681 endif
682
683 if LIBGO_IS_LINUX
684 go_net_sendfile_file = go/net/sendfile_linux.go
685 else
686 go_net_sendfile_file = go/net/sendfile_stub.go
687 endif
688
689 if LIBGO_IS_LINUX
690 go_net_interface_file = go/net/interface_linux.go
691 else
692 go_net_interface_file = go/net/interface_stub.go
693 endif
694
695 go_net_files = \
696         go/net/cgo_unix.go \
697         $(go_net_cgo_file) \
698         go/net/dial.go \
699         go/net/dnsclient.go \
700         go/net/dnsclient_unix.go \
701         go/net/dnsconfig.go \
702         go/net/dnsmsg.go \
703         $(go_net_newpollserver_file) \
704         go/net/fd.go \
705         $(go_net_fd_os_file) \
706         go/net/file.go \
707         go/net/hosts.go \
708         go/net/interface.go \
709         $(go_net_interface_file) \
710         go/net/ip.go \
711         go/net/iprawsock.go \
712         go/net/iprawsock_posix.go \
713         go/net/ipsock.go \
714         go/net/ipsock_posix.go \
715         go/net/lookup_unix.go \
716         go/net/net.go \
717         go/net/parse.go \
718         go/net/pipe.go \
719         go/net/port.go \
720         $(go_net_sendfile_file) \
721         go/net/sock.go \
722         $(go_net_sock_file) \
723         go/net/tcpsock.go \
724         go/net/tcpsock_posix.go \
725         go/net/udpsock.go \
726         go/net/udpsock_posix.go \
727         go/net/unixsock.go \
728         go/net/unixsock_posix.go
729
730 if LIBGO_IS_SOLARIS
731 if LIBGO_IS_386
732 go_os_dir_file = go/os/dir_largefile.go
733 else
734 if LIBGO_IS_SPARC
735 go_os_dir_file = go/os/dir_largefile.go
736 else
737 go_os_dir_file = go/os/dir_regfile.go
738 endif
739 endif
740 else
741 if LIBGO_IS_LINUX
742 go_os_dir_file = go/os/dir_largefile.go
743 else
744 go_os_dir_file = go/os/dir_regfile.go
745 endif
746 endif
747
748 if LIBGO_IS_LINUX
749 go_os_sys_file = go/os/sys_linux.go
750 else
751 if LIBGO_IS_SOLARIS
752 go_os_sys_file = go/os/sys_uname.go
753 else
754 if LIBGO_IS_IRIX
755 go_os_sys_file = go/os/sys_uname.go
756 else
757 if LIBGO_IS_RTEMS
758 go_os_sys_file = go/os/sys_uname.go
759 else
760 go_os_sys_file = go/os/sys_bsd.go
761 endif
762 endif
763 endif
764 endif
765
766 go_os_files = \
767         $(go_os_dir_file) \
768         go/os/dir.go \
769         go/os/env.go \
770         go/os/error.go \
771         go/os/error_posix.go \
772         go/os/exec.go \
773         go/os/exec_posix.go \
774         go/os/exec_unix.go \
775         go/os/file.go \
776         go/os/file_posix.go \
777         go/os/file_unix.go \
778         go/os/getwd.go \
779         go/os/path.go \
780         go/os/path_unix.go \
781         go/os/proc.go \
782         go/os/stat.go \
783         go/os/str.go \
784         $(go_os_sys_file) \
785         go/os/time.go \
786         go/os/types.go \
787         signal_unix.go
788
789 go_patch_files = \
790         go/patch/apply.go \
791         go/patch/git.go \
792         go/patch/patch.go \
793         go/patch/textdiff.go
794
795 go_path_files = \
796         go/path/match.go \
797         go/path/path.go
798
799 go_reflect_files = \
800         go/reflect/deepequal.go \
801         go/reflect/type.go \
802         go/reflect/value.go
803
804 go_regexp_files = \
805         go/regexp/exec.go \
806         go/regexp/regexp.go
807
808 go_net_rpc_files = \
809         go/net/rpc/client.go \
810         go/net/rpc/debug.go \
811         go/net/rpc/server.go
812
813 go_runtime_files = \
814         go/runtime/debug.go \
815         go/runtime/error.go \
816         go/runtime/extern.go \
817         go/runtime/mem.go \
818         go/runtime/sig.go \
819         go/runtime/softfloat64.go \
820         go/runtime/type.go \
821         version.go
822
823 version.go: s-version; @true
824 s-version: Makefile
825         rm -f version.go.tmp
826         echo "package runtime" > version.go.tmp
827         echo 'const defaultGoroot = "$(prefix)"' >> version.go.tmp
828         echo 'const theVersion = "'`$(CC) --version | sed 1q`'"' >> version.go.tmp
829         echo 'const theGoarch = "'$(GOARCH)'"' >> version.go.tmp
830         echo 'const theGoos = "'$(GOOS)'"' >> version.go.tmp
831         $(SHELL) $(srcdir)/../move-if-change version.go.tmp version.go
832         $(STAMP) $@
833
834 go_sort_files = \
835         go/sort/search.go \
836         go/sort/sort.go
837
838 go_strconv_files = \
839         go/strconv/atob.go \
840         go/strconv/atof.go \
841         go/strconv/atoi.go \
842         go/strconv/decimal.go \
843         go/strconv/ftoa.go \
844         go/strconv/itoa.go \
845         go/strconv/quote.go
846
847 go_strings_files = \
848         go/strings/reader.go \
849         go/strings/replace.go \
850         go/strings/strings.go
851
852 go_sync_files = \
853         go/sync/cond.go \
854         go/sync/mutex.go \
855         go/sync/once.go \
856         go/sync/rwmutex.go \
857         go/sync/waitgroup.go
858
859 if LIBGO_IS_SOLARIS
860 go_syslog_file = go/log/syslog/syslog_libc.go
861 else
862 if LIBGO_IS_IRIX
863 go_syslog_file = go/log/syslog/syslog_libc.go
864 else
865 go_syslog_file = go/log/syslog/syslog_unix.go
866 endif
867 endif
868
869 go_log_syslog_files = \
870         go/log/syslog/syslog.go \
871         $(go_syslog_file)
872 go_syslog_c_files = \
873         go/log/syslog/syslog_c.c
874
875 go_testing_files = \
876         go/testing/benchmark.go \
877         go/testing/example.go \
878         go/testing/testing.go
879
880 go_time_files = \
881         go/time/format.go \
882         go/time/sleep.go \
883         go/time/sys.go \
884         go/time/sys_unix.go \
885         go/time/tick.go \
886         go/time/time.go \
887         go/time/zoneinfo.go \
888         go/time/zoneinfo_unix.go
889
890 go_unicode_files = \
891         go/unicode/casetables.go \
892         go/unicode/digit.go \
893         go/unicode/graphic.go \
894         go/unicode/letter.go \
895         go/unicode/tables.go
896
897 go_websocket_files = \
898         go/websocket/client.go \
899         go/websocket/hixie.go \
900         go/websocket/hybi.go \
901         go/websocket/server.go \
902         go/websocket/websocket.go
903
904
905 go_archive_tar_files = \
906         go/archive/tar/common.go \
907         go/archive/tar/reader.go \
908         go/archive/tar/writer.go
909
910 go_archive_zip_files = \
911         go/archive/zip/reader.go \
912         go/archive/zip/struct.go \
913         go/archive/zip/writer.go
914
915 go_compress_bzip2_files = \
916         go/compress/bzip2/bit_reader.go \
917         go/compress/bzip2/bzip2.go \
918         go/compress/bzip2/huffman.go \
919         go/compress/bzip2/move_to_front.go
920
921 go_compress_flate_files = \
922         go/compress/flate/deflate.go \
923         go/compress/flate/huffman_bit_writer.go \
924         go/compress/flate/huffman_code.go \
925         go/compress/flate/inflate.go \
926         go/compress/flate/reverse_bits.go \
927         go/compress/flate/token.go \
928         go/compress/flate/util.go
929
930 go_compress_gzip_files = \
931         go/compress/gzip/gzip.go \
932         go/compress/gzip/gunzip.go
933
934 go_compress_lzw_files = \
935         go/compress/lzw/reader.go \
936         go/compress/lzw/writer.go
937
938 go_compress_zlib_files = \
939         go/compress/zlib/reader.go \
940         go/compress/zlib/writer.go
941
942 go_container_heap_files = \
943         go/container/heap/heap.go
944
945 go_container_list_files = \
946         go/container/list/list.go
947
948 go_container_ring_files = \
949         go/container/ring/ring.go
950
951 go_crypto_aes_files = \
952         go/crypto/aes/block.go \
953         go/crypto/aes/cipher.go \
954         go/crypto/aes/const.go
955 go_crypto_bcrypt_files = \
956         go/crypto/bcrypt/base64.go \
957         go/crypto/bcrypt/bcrypt.go
958 go_crypto_blowfish_files = \
959         go/crypto/blowfish/block.go \
960         go/crypto/blowfish/const.go \
961         go/crypto/blowfish/cipher.go
962 go_crypto_cast5_files = \
963         go/crypto/cast5/cast5.go
964 go_crypto_cipher_files = \
965         go/crypto/cipher/cbc.go \
966         go/crypto/cipher/cfb.go \
967         go/crypto/cipher/cipher.go \
968         go/crypto/cipher/ctr.go \
969         go/crypto/cipher/io.go \
970         go/crypto/cipher/ocfb.go \
971         go/crypto/cipher/ofb.go
972 go_crypto_des_files = \
973         go/crypto/des/block.go \
974         go/crypto/des/cipher.go \
975         go/crypto/des/const.go
976 go_crypto_dsa_files = \
977         go/crypto/dsa/dsa.go
978 go_crypto_ecdsa_files = \
979         go/crypto/ecdsa/ecdsa.go
980 go_crypto_elliptic_files = \
981         go/crypto/elliptic/elliptic.go
982 go_crypto_hmac_files = \
983         go/crypto/hmac/hmac.go
984 go_crypto_md4_files = \
985         go/crypto/md4/md4.go \
986         go/crypto/md4/md4block.go
987 go_crypto_md5_files = \
988         go/crypto/md5/md5.go \
989         go/crypto/md5/md5block.go
990 go_crypto_ocsp_files = \
991         go/crypto/ocsp/ocsp.go
992 go_crypto_openpgp_files = \
993         go/crypto/openpgp/canonical_text.go \
994         go/crypto/openpgp/keys.go \
995         go/crypto/openpgp/read.go \
996         go/crypto/openpgp/write.go
997 go_crypto_rand_files = \
998         go/crypto/rand/rand.go \
999         go/crypto/rand/rand_unix.go \
1000         go/crypto/rand/util.go
1001 go_crypto_rc4_files = \
1002         go/crypto/rc4/rc4.go
1003 go_crypto_ripemd160_files = \
1004         go/crypto/ripemd160/ripemd160.go \
1005         go/crypto/ripemd160/ripemd160block.go
1006 go_crypto_rsa_files = \
1007         go/crypto/rsa/pkcs1v15.go \
1008         go/crypto/rsa/rsa.go
1009 go_crypto_sha1_files = \
1010         go/crypto/sha1/sha1.go \
1011         go/crypto/sha1/sha1block.go
1012 go_crypto_sha256_files = \
1013         go/crypto/sha256/sha256.go \
1014         go/crypto/sha256/sha256block.go
1015 go_crypto_sha512_files = \
1016         go/crypto/sha512/sha512.go \
1017         go/crypto/sha512/sha512block.go
1018 go_crypto_subtle_files = \
1019         go/crypto/subtle/constant_time.go
1020 go_crypto_tls_files = \
1021         go/crypto/tls/alert.go \
1022         go/crypto/tls/cipher_suites.go \
1023         go/crypto/tls/common.go \
1024         go/crypto/tls/conn.go \
1025         go/crypto/tls/handshake_client.go \
1026         go/crypto/tls/handshake_messages.go \
1027         go/crypto/tls/handshake_server.go \
1028         go/crypto/tls/key_agreement.go \
1029         go/crypto/tls/prf.go \
1030         go/crypto/tls/root_unix.go \
1031         go/crypto/tls/tls.go
1032 go_crypto_twofish_files = \
1033         go/crypto/twofish/twofish.go
1034 go_crypto_x509_files = \
1035         go/crypto/x509/cert_pool.go \
1036         go/crypto/x509/pkcs1.go \
1037         go/crypto/x509/pkcs8.go \
1038         go/crypto/x509/verify.go \
1039         go/crypto/x509/x509.go
1040 go_crypto_xtea_files = \
1041         go/crypto/xtea/block.go \
1042         go/crypto/xtea/cipher.go
1043
1044 go_crypto_openpgp_armor_files = \
1045         go/crypto/openpgp/armor/armor.go \
1046         go/crypto/openpgp/armor/encode.go
1047 go_crypto_openpgp_elgamal_files = \
1048         go/crypto/openpgp/elgamal/elgamal.go
1049 go_crypto_openpgp_error_files = \
1050         go/crypto/openpgp/error/error.go
1051 go_crypto_openpgp_packet_files = \
1052         go/crypto/openpgp/packet/compressed.go \
1053         go/crypto/openpgp/packet/encrypted_key.go \
1054         go/crypto/openpgp/packet/literal.go \
1055         go/crypto/openpgp/packet/one_pass_signature.go \
1056         go/crypto/openpgp/packet/packet.go \
1057         go/crypto/openpgp/packet/private_key.go \
1058         go/crypto/openpgp/packet/public_key.go \
1059         go/crypto/openpgp/packet/reader.go \
1060         go/crypto/openpgp/packet/signature.go \
1061         go/crypto/openpgp/packet/symmetric_key_encrypted.go \
1062         go/crypto/openpgp/packet/symmetrically_encrypted.go \
1063         go/crypto/openpgp/packet/userid.go
1064 go_crypto_openpgp_s2k_files = \
1065         go/crypto/openpgp/s2k/s2k.go
1066
1067 go_crypto_x509_pkix_files = \
1068         go/crypto/x509/pkix/pkix.go
1069
1070 go_debug_dwarf_files = \
1071         go/debug/dwarf/buf.go \
1072         go/debug/dwarf/const.go \
1073         go/debug/dwarf/entry.go \
1074         go/debug/dwarf/open.go \
1075         go/debug/dwarf/type.go \
1076         go/debug/dwarf/unit.go
1077 go_debug_elf_files = \
1078         go/debug/elf/elf.go \
1079         go/debug/elf/file.go
1080 go_debug_gosym_files = \
1081         go/debug/gosym/pclntab.go \
1082         go/debug/gosym/symtab.go
1083 go_debug_macho_files = \
1084         go/debug/macho/file.go \
1085         go/debug/macho/macho.go
1086 go_debug_pe_files = \
1087         go/debug/pe/file.go \
1088         go/debug/pe/pe.go
1089
1090 go_encoding_ascii85_files = \
1091         go/encoding/ascii85/ascii85.go
1092 go_encoding_asn1_files = \
1093         go/encoding/asn1/asn1.go \
1094         go/encoding/asn1/common.go \
1095         go/encoding/asn1/marshal.go
1096 go_encoding_base32_files = \
1097         go/encoding/base32/base32.go
1098 go_encoding_base64_files = \
1099         go/encoding/base64/base64.go
1100 go_encoding_binary_files = \
1101         go/encoding/binary/binary.go \
1102         go/encoding/binary/varint.go
1103 go_encoding_csv_files = \
1104         go/encoding/csv/reader.go \
1105         go/encoding/csv/writer.go
1106 go_encoding_git85_files = \
1107         go/encoding/git85/git.go
1108 go_encoding_gob_files = \
1109         go/encoding/gob/decode.go \
1110         go/encoding/gob/decoder.go \
1111         go/encoding/gob/doc.go \
1112         go/encoding/gob/encode.go \
1113         go/encoding/gob/encoder.go \
1114         go/encoding/gob/error.go \
1115         go/encoding/gob/type.go
1116 go_encoding_hex_files = \
1117         go/encoding/hex/hex.go
1118 go_encoding_json_files = \
1119         go/encoding/json/decode.go \
1120         go/encoding/json/encode.go \
1121         go/encoding/json/indent.go \
1122         go/encoding/json/scanner.go \
1123         go/encoding/json/stream.go \
1124         go/encoding/json/tags.go
1125 go_encoding_pem_files = \
1126         go/encoding/pem/pem.go
1127 go_encoding_xml_files = \
1128         go/encoding/xml/marshal.go \
1129         go/encoding/xml/read.go \
1130         go/encoding/xml/xml.go
1131
1132 go_exp_ebnf_files = \
1133         go/exp/ebnf/ebnf.go \
1134         go/exp/ebnf/parser.go
1135 go_exp_inotify_files = \
1136         go/exp/inotify/inotify_linux.go
1137 go_exp_norm_files = \
1138         go/exp/norm/composition.go \
1139         go/exp/norm/forminfo.go \
1140         go/exp/norm/input.go \
1141         go/exp/norm/normalize.go \
1142         go/exp/norm/readwriter.go \
1143         go/exp/norm/tables.go \
1144         go/exp/norm/trie.go
1145 go_exp_spdy_files = \
1146         go/exp/spdy/read.go \
1147         go/exp/spdy/types.go \
1148         go/exp/spdy/write.go
1149 go_exp_sql_files = \
1150         go/exp/sql/convert.go \
1151         go/exp/sql/sql.go
1152 go_exp_ssh_files = \
1153         go/exp/ssh/channel.go \
1154         go/exp/ssh/cipher.go \
1155         go/exp/ssh/client.go \
1156         go/exp/ssh/client_auth.go \
1157         go/exp/ssh/common.go \
1158         go/exp/ssh/doc.go \
1159         go/exp/ssh/messages.go \
1160         go/exp/ssh/server.go \
1161         go/exp/ssh/server_shell.go \
1162         go/exp/ssh/session.go \
1163         go/exp/ssh/tcpip.go \
1164         go/exp/ssh/transport.go
1165 go_exp_terminal_files = \
1166         go/exp/terminal/terminal.go \
1167         go/exp/terminal/util.go
1168 go_exp_types_files = \
1169         go/exp/types/check.go \
1170         go/exp/types/const.go \
1171         go/exp/types/exportdata.go \
1172         go/exp/types/gcimporter.go \
1173         go/exp/types/types.go \
1174         go/exp/types/universe.go
1175
1176 go_exp_sql_driver_files = \
1177         go/exp/sql/driver/driver.go \
1178         go/exp/sql/driver/types.go
1179
1180 go_go_ast_files = \
1181         go/go/ast/ast.go \
1182         go/go/ast/filter.go \
1183         go/go/ast/import.go \
1184         go/go/ast/print.go \
1185         go/go/ast/resolve.go \
1186         go/go/ast/scope.go \
1187         go/go/ast/walk.go
1188 go_go_build_files = \
1189         go/go/build/build.go \
1190         go/go/build/dir.go \
1191         go/go/build/path.go \
1192         syslist.go
1193 go_go_doc_files = \
1194         go/go/doc/comment.go \
1195         go/go/doc/doc.go \
1196         go/go/doc/example.go
1197 go_go_parser_files = \
1198         go/go/parser/interface.go \
1199         go/go/parser/parser.go
1200 go_go_printer_files = \
1201         go/go/printer/nodes.go \
1202         go/go/printer/printer.go
1203 go_go_scanner_files = \
1204         go/go/scanner/errors.go \
1205         go/go/scanner/scanner.go
1206 go_go_token_files = \
1207         go/go/token/position.go \
1208         go/go/token/serialize.go \
1209         go/go/token/token.go
1210
1211 go_hash_adler32_files = \
1212         go/hash/adler32/adler32.go
1213 go_hash_crc32_files = \
1214         go/hash/crc32/crc32.go \
1215         go/hash/crc32/crc32_generic.go
1216 go_hash_crc64_files = \
1217         go/hash/crc64/crc64.go
1218 go_hash_fnv_files = \
1219         go/hash/fnv/fnv.go
1220
1221 go_html_template_files = \
1222         go/html/template/attr.go \
1223         go/html/template/clone.go \
1224         go/html/template/content.go \
1225         go/html/template/context.go \
1226         go/html/template/css.go \
1227         go/html/template/doc.go \
1228         go/html/template/error.go \
1229         go/html/template/escape.go \
1230         go/html/template/html.go \
1231         go/html/template/js.go \
1232         go/html/template/template.go \
1233         go/html/template/transition.go \
1234         go/html/template/url.go
1235
1236 go_image_bmp_files = \
1237         go/image/bmp/reader.go
1238
1239 go_image_color_files = \
1240         go/image/color/color.go
1241
1242 go_image_draw_files = \
1243         go/image/draw/draw.go
1244
1245 go_image_gif_files = \
1246         go/image/gif/reader.go
1247
1248 go_image_jpeg_files = \
1249         go/image/jpeg/fdct.go \
1250         go/image/jpeg/huffman.go \
1251         go/image/jpeg/idct.go \
1252         go/image/jpeg/reader.go \
1253         go/image/jpeg/writer.go
1254
1255 go_image_png_files = \
1256         go/image/png/reader.go \
1257         go/image/png/writer.go
1258
1259 go_image_tiff_files = \
1260         go/image/tiff/buffer.go \
1261         go/image/tiff/compress.go \
1262         go/image/tiff/consts.go \
1263         go/image/tiff/reader.go
1264
1265 go_image_ycbcr_files = \
1266         go/image/ycbcr/ycbcr.go
1267
1268 go_index_suffixarray_files = \
1269         go/index/suffixarray/qsufsort.go \
1270         go/index/suffixarray/suffixarray.go
1271
1272 go_io_ioutil_files = \
1273         go/io/ioutil/ioutil.go \
1274         go/io/ioutil/tempfile.go
1275
1276 go_math_big_files = \
1277         go/math/big/arith.go \
1278         go/math/big/int.go \
1279         go/math/big/nat.go \
1280         go/math/big/rat.go
1281 go_math_cmplx_files = \
1282         go/math/cmplx/abs.go \
1283         go/math/cmplx/asin.go \
1284         go/math/cmplx/conj.go \
1285         go/math/cmplx/exp.go \
1286         go/math/cmplx/isinf.go \
1287         go/math/cmplx/isnan.go \
1288         go/math/cmplx/log.go \
1289         go/math/cmplx/phase.go \
1290         go/math/cmplx/polar.go \
1291         go/math/cmplx/pow.go \
1292         go/math/cmplx/rect.go \
1293         go/math/cmplx/sin.go \
1294         go/math/cmplx/sqrt.go \
1295         go/math/cmplx/tan.go
1296 go_math_rand_files = \
1297         go/math/rand/exp.go \
1298         go/math/rand/normal.go \
1299         go/math/rand/rand.go \
1300         go/math/rand/rng.go \
1301         go/math/rand/zipf.go
1302
1303 go_mime_multipart_files = \
1304         go/mime/multipart/formdata.go \
1305         go/mime/multipart/multipart.go \
1306         go/mime/multipart/writer.go
1307
1308 go_net_dict_files = \
1309         go/net/dict/dict.go
1310 go_net_http_files = \
1311         go/net/http/chunked.go \
1312         go/net/http/client.go \
1313         go/net/http/cookie.go \
1314         go/net/http/filetransport.go \
1315         go/net/http/fs.go \
1316         go/net/http/header.go \
1317         go/net/http/lex.go \
1318         go/net/http/request.go \
1319         go/net/http/response.go \
1320         go/net/http/server.go \
1321         go/net/http/sniff.go \
1322         go/net/http/status.go \
1323         go/net/http/transfer.go \
1324         go/net/http/transport.go
1325 go_net_mail_files = \
1326         go/net/mail/message.go
1327 go_net_smtp_files = \
1328         go/net/smtp/auth.go \
1329         go/net/smtp/smtp.go
1330 go_net_textproto_files = \
1331         go/net/textproto/header.go \
1332         go/net/textproto/pipeline.go \
1333         go/net/textproto/reader.go \
1334         go/net/textproto/textproto.go \
1335         go/net/textproto/writer.go
1336 go_net_url_files = \
1337         go/net/url/url.go
1338
1339 go_net_http_cgi_files = \
1340         go/net/http/cgi/child.go \
1341         go/net/http/cgi/host.go
1342 go_net_http_fcgi_files = \
1343         go/net/http/fcgi/child.go \
1344         go/net/http/fcgi/fcgi.go
1345 go_net_http_httptest_files = \
1346         go/net/http/httptest/recorder.go \
1347         go/net/http/httptest/server.go
1348 go_net_http_pprof_files = \
1349         go/net/http/pprof/pprof.go
1350 go_net_http_httputil_files = \
1351         go/net/http/httputil/chunked.go \
1352         go/net/http/httputil/dump.go \
1353         go/net/http/httputil/persist.go \
1354         go/net/http/httputil/reverseproxy.go
1355
1356
1357 go_old_netchan_files = \
1358         go/old/netchan/common.go \
1359         go/old/netchan/export.go \
1360         go/old/netchan/import.go
1361 go_old_regexp_files = \
1362         go/old/regexp/regexp.go
1363 go_old_template_files = \
1364         go/old/template/doc.go \
1365         go/old/template/execute.go \
1366         go/old/template/format.go \
1367         go/old/template/parse.go
1368
1369 go_os_exec_files = \
1370         go/os/exec/exec.go \
1371         go/os/exec/lp_unix.go
1372
1373 go_os_user_files = \
1374         go/os/user/user.go \
1375         go/os/user/lookup_unix.go
1376
1377 go_os_signal_files = \
1378         go/os/signal/signal.go
1379
1380 go_path_filepath_files = \
1381         go/path/filepath/match.go \
1382         go/path/filepath/path.go \
1383         go/path/filepath/path_unix.go
1384
1385 go_regexp_syntax_files = \
1386         go/regexp/syntax/compile.go \
1387         go/regexp/syntax/parse.go \
1388         go/regexp/syntax/perl_groups.go \
1389         go/regexp/syntax/prog.go \
1390         go/regexp/syntax/regexp.go \
1391         go/regexp/syntax/simplify.go
1392
1393 go_net_rpc_jsonrpc_files = \
1394         go/net/rpc/jsonrpc/client.go \
1395         go/net/rpc/jsonrpc/server.go
1396
1397 go_runtime_debug_files = \
1398         go/runtime/debug/stack.go
1399 go_runtime_pprof_files = \
1400         go/runtime/pprof/pprof.go
1401
1402 go_text_tabwriter_files = \
1403         go/text/tabwriter/tabwriter.go
1404 go_text_template_files = \
1405         go/text/template/doc.go \
1406         go/text/template/exec.go \
1407         go/text/template/funcs.go \
1408         go/text/template/helper.go \
1409         go/text/template/template.go
1410 go_text_template_parse_files = \
1411         go/text/template/parse/lex.go \
1412         go/text/template/parse/node.go \
1413         go/text/template/parse/parse.go
1414
1415 go_sync_atomic_files = \
1416         go/sync/atomic/doc.go
1417 go_sync_atomic_c_files = \
1418         go/sync/atomic/atomic.c
1419
1420 go_testing_iotest_files = \
1421         go/testing/iotest/logger.go \
1422         go/testing/iotest/reader.go \
1423         go/testing/iotest/writer.go
1424 go_testing_quick_files = \
1425         go/testing/quick/quick.go
1426 go_testing_script_files = \
1427         go/testing/script/script.go
1428
1429 go_text_scanner_files = \
1430         go/text/scanner/scanner.go
1431
1432 go_unicode_utf16_files = \
1433         go/unicode/utf16/utf16.go
1434 go_unicode_utf8_files = \
1435         go/unicode/utf8/string.go \
1436         go/unicode/utf8/utf8.go
1437
1438 # Define Syscall and Syscall6.
1439 if LIBGO_IS_RTEMS
1440 syscall_syscall_file = go/syscall/syscall_stubs.go
1441 else
1442 syscall_syscall_file = go/syscall/syscall_unix.go
1443 endif
1444
1445 # Define ForkExec and Exec.
1446 if LIBGO_IS_RTEMS
1447 syscall_exec_file = go/syscall/exec_stubs.go
1448 else
1449 syscall_exec_file = go/syscall/exec_unix.go
1450 endif
1451
1452 # Define Wait4.
1453 if HAVE_WAIT4
1454 syscall_wait_file = go/syscall/libcall_wait4.go
1455 else
1456 syscall_wait_file = go/syscall/libcall_waitpid.go
1457 endif
1458
1459 # Define Sleep.
1460 if LIBGO_IS_RTEMS
1461 syscall_sleep_file = go/syscall/sleep_rtems.go
1462 else
1463 syscall_sleep_file = go/syscall/sleep_select.go
1464 endif
1465
1466 # Define Errstr.
1467 if LIBGO_IS_LINUX
1468 syscall_errstr_file = go/syscall/errstr_linux.go
1469 else
1470 if LIBGO_IS_RTEMS
1471 syscall_errstr_file = go/syscall/errstr_linux.go
1472 else
1473 if HAVE_STRERROR_R
1474 syscall_errstr_file = go/syscall/errstr.go
1475 else
1476 syscall_errstr_file = go/syscall/errstr_nor.go
1477 endif
1478 endif
1479 endif
1480
1481 # Declare libc functions that vary for largefile systems.
1482 if LIBGO_IS_LINUX
1483 # Always use lseek64 on GNU/Linux.
1484 syscall_size_file = go/syscall/libcall_posix_largefile.go
1485 else # !LIBGO_IS_LINUX
1486 if LIBGO_IS_SOLARIS
1487 if LIBGO_IS_386
1488 # Use lseek64 on 32-bit Solaris/x86.
1489 syscall_size_file = go/syscall/libcall_posix_largefile.go
1490 else # !LIBGO_IS_386
1491 if LIBGO_IS_SPARC
1492 # Use lseek64 on 32-bit Solaris/SPARC.
1493 syscall_size_file = go/syscall/libcall_posix_largefile.go
1494 else # !LIBGO_IS_386 && !LIBGO_IS_SPARC
1495 # Use lseek on 64-bit Solaris.
1496 syscall_size_file = go/syscall/libcall_posix_regfile.go
1497 endif # !LIBGO_IS_386 && !LIBGO_IS_SPARC
1498 endif # !LIBGO_IS_SOLARIS
1499 else # !LIBGO_IS_LINUX && !LIBGO_IS_SOLARIS
1500 # Use lseek by default.
1501 syscall_size_file = go/syscall/libcall_posix_regfile.go
1502 endif # !LIBGO_IS_SOLARIS
1503 endif # !LIBGO_IS_LINUX
1504
1505 # Define socket sizes and types.
1506 if LIBGO_IS_LINUX
1507 syscall_socket_file = go/syscall/socket_linux.go epoll.go
1508 else
1509 if LIBGO_IS_SOLARIS
1510 syscall_socket_file = go/syscall/socket_solaris.go
1511 else
1512 if LIBGO_IS_IRIX
1513 syscall_socket_file = go/syscall/socket_irix.go
1514 else
1515 syscall_socket_file = go/syscall/socket_bsd.go
1516 endif
1517 endif
1518 endif
1519
1520 # Support for uname.
1521 if LIBGO_IS_SOLARIS
1522 if LIBGO_IS_386
1523 # 32-bit Solaris 2/x86 needs _nuname, handled in libcall_solaris_386.go.
1524 syscall_uname_file =
1525 else # !LIBGO_IS_386 && LIBGO_IS_SOLARIS
1526 syscall_uname_file = go/syscall/libcall_uname.go
1527 endif
1528 else # !LIBGO_IS_SOLARIS
1529 syscall_uname_file = go/syscall/libcall_uname.go
1530 endif
1531
1532 # Support for netlink sockets and messages.
1533 if LIBGO_IS_LINUX
1534 syscall_netlink_file = go/syscall/netlink_linux.go
1535 else
1536 syscall_netlink_file =
1537 endif
1538
1539 go_base_syscall_files = \
1540         go/syscall/env_unix.go \
1541         go/syscall/libcall_support.go \
1542         go/syscall/libcall_posix.go \
1543         go/syscall/socket.go \
1544         go/syscall/str.go \
1545         go/syscall/syscall.go \
1546         $(syscall_syscall_file) \
1547         $(syscall_exec_file) \
1548         $(syscall_wait_file) \
1549         $(syscall_sleep_file) \
1550         $(syscall_errstr_file) \
1551         $(syscall_size_file) \
1552         $(syscall_socket_file) \
1553         $(syscall_uname_file) \
1554         $(syscall_netlink_file) \
1555         $(GO_LIBCALL_OS_FILE) \
1556         $(GO_LIBCALL_OS_ARCH_FILE) \
1557         $(GO_SYSCALL_OS_FILE) \
1558         $(GO_SYSCALL_OS_ARCH_FILE)
1559
1560 go_syscall_files = \
1561         $(go_base_syscall_files) \
1562         libcalls.go \
1563         sysinfo.go \
1564         syscall_arch.go
1565 go_syscall_c_files = \
1566         go/syscall/errno.c \
1567         go/syscall/wait.c
1568
1569 libcalls.go: s-libcalls; @true
1570 s-libcalls: Makefile go/syscall/mksyscall.awk $(go_base_syscall_files)
1571         rm -f libcalls.go.tmp
1572         files=`echo $^ | sed -e 's/Makefile//' -e 's|[^ ]*go/syscall/mksyscall.awk||'`; \
1573         $(AWK) -f $(srcdir)/go/syscall/mksyscall.awk $${files} > libcalls.go.tmp
1574         $(SHELL) $(srcdir)/../move-if-change libcalls.go.tmp libcalls.go
1575         $(STAMP) $@
1576
1577 syscall_arch.go: s-syscall_arch; @true
1578 s-syscall_arch: Makefile
1579         rm -f syscall_arch.go.tmp
1580         echo "package syscall" > syscall_arch.go.tmp
1581         echo 'const ARCH = "'$(GOARCH)'"' >> syscall_arch.go.tmp
1582         echo 'const OS = "'$(GOOS)'"' >> syscall_arch.go.tmp
1583         $(SHELL) $(srcdir)/../move-if-change syscall_arch.go.tmp syscall_arch.go
1584         $(STAMP) $@
1585
1586 sysinfo.go: s-sysinfo; @true
1587 s-sysinfo: $(srcdir)/mksysinfo.sh config.h
1588         CC="$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(OSCFLAGS)" $(SHELL) $(srcdir)/mksysinfo.sh
1589         $(SHELL) $(srcdir)/../move-if-change tmp-sysinfo.go sysinfo.go
1590         $(STAMP) $@
1591
1592 # The epoll struct has an embedded union and is packed on x86_64,
1593 # which is too complicated for mksysinfo.sh.  We find the offset of
1594 # the only field we care about in configure.ac, and generate the
1595 # struct here.
1596 epoll.go: s-epoll; @true
1597 s-epoll: Makefile
1598         rm -f epoll.go.tmp
1599         echo 'package syscall' > epoll.go.tmp
1600         echo 'type EpollEvent struct {' >> epoll.go.tmp
1601         echo '  Events uint32' >> epoll.go.tmp
1602         case "$(SIZEOF_STRUCT_EPOLL_EVENT),$(STRUCT_EPOLL_EVENT_FD_OFFSET)" in \
1603         0,0) echo 1>&2 "*** struct epoll_event data.fd offset unknown"; \
1604            exit 1; ;; \
1605         8,4) echo '     Fd int32' >> epoll.go.tmp; ;; \
1606         12,4) echo '    Fd int32' >> epoll.go.tmp; \
1607            echo '       Pad [4]byte' >> epoll.go.tmp; ;; \
1608         12,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
1609            echo '       Fd int32' >> epoll.go.tmp; ;; \
1610         16,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
1611            echo '       Fd int32' >> epoll.go.tmp; \
1612            echo '       Pad2 [4]byte' >> epoll.go.tmp; ;; \
1613         *) echo 1>&2 "*** struct epoll_event unsupported"; \
1614            exit 1; ;; \
1615         esac
1616         echo '}' >> epoll.go.tmp
1617         $(SHELL) $(srcdir)/../move-if-change epoll.go.tmp epoll.go
1618         $(STAMP) $@
1619
1620 if LIBGO_IS_LINUX
1621 # os_lib_inotify_lo = os/inotify.lo
1622 os_lib_inotify_lo =
1623 else
1624 os_lib_inotify_lo =
1625 endif
1626
1627 libgo_go_objs = \
1628         bufio/bufio.lo \
1629         bytes/bytes.lo \
1630         bytes/index.lo \
1631         crypto/crypto.lo \
1632         errors/errors.lo \
1633         expvar/expvar.lo \
1634         flag/flag.lo \
1635         fmt/fmt.lo \
1636         hash/hash.lo \
1637         html/html.lo \
1638         image/image.lo \
1639         io/io.lo \
1640         log/log.lo \
1641         math/math.lo \
1642         net/net.lo \
1643         os/exec.lo \
1644         os/os.lo \
1645         patch/patch.lo \
1646         path/path.lo \
1647         reflect/reflect.lo \
1648         regexp/regexp.lo \
1649         runtime/runtime.lo \
1650         sort/sort.lo \
1651         strconv/strconv.lo \
1652         strings/strings.lo \
1653         sync/sync.lo \
1654         time/time.lo \
1655         unicode/unicode.lo \
1656         websocket/websocket.lo \
1657         archive/tar.lo \
1658         archive/zip.lo \
1659         compress/bzip2.lo \
1660         compress/flate.lo \
1661         compress/gzip.lo \
1662         compress/lzw.lo \
1663         compress/zlib.lo \
1664         container/heap.lo \
1665         container/list.lo \
1666         container/ring.lo \
1667         crypto/aes.lo \
1668         crypto/bcrypt.lo \
1669         crypto/blowfish.lo \
1670         crypto/cast5.lo \
1671         crypto/cipher.lo \
1672         crypto/des.lo \
1673         crypto/dsa.lo \
1674         crypto/ecdsa.lo \
1675         crypto/elliptic.lo \
1676         crypto/hmac.lo \
1677         crypto/md4.lo \
1678         crypto/md5.lo \
1679         crypto/ocsp.lo \
1680         crypto/openpgp.lo \
1681         crypto/rand.lo \
1682         crypto/rc4.lo \
1683         crypto/ripemd160.lo \
1684         crypto/rsa.lo \
1685         crypto/sha1.lo \
1686         crypto/sha256.lo \
1687         crypto/sha512.lo \
1688         crypto/subtle.lo \
1689         crypto/tls.lo \
1690         crypto/twofish.lo \
1691         crypto/x509.lo \
1692         crypto/xtea.lo \
1693         crypto/openpgp/armor.lo \
1694         crypto/openpgp/elgamal.lo \
1695         crypto/openpgp/error.lo \
1696         crypto/openpgp/packet.lo \
1697         crypto/openpgp/s2k.lo \
1698         crypto/x509/pkix.lo \
1699         debug/dwarf.lo \
1700         debug/elf.lo \
1701         debug/gosym.lo \
1702         debug/macho.lo \
1703         debug/pe.lo \
1704         encoding/ascii85.lo \
1705         encoding/asn1.lo \
1706         encoding/base32.lo \
1707         encoding/base64.lo \
1708         encoding/binary.lo \
1709         encoding/csv.lo \
1710         encoding/git85.lo \
1711         encoding/gob.lo \
1712         encoding/hex.lo \
1713         encoding/json.lo \
1714         encoding/pem.lo \
1715         encoding/xml.lo \
1716         exp/ebnf.lo \
1717         exp/norm.lo \
1718         exp/spdy.lo \
1719         exp/sql.lo \
1720         exp/ssh.lo \
1721         exp/terminal.lo \
1722         exp/types.lo \
1723         exp/sql/driver.lo \
1724         html/template.lo \
1725         go/ast.lo \
1726         go/build.lo \
1727         go/doc.lo \
1728         go/parser.lo \
1729         go/printer.lo \
1730         go/scanner.lo \
1731         go/token.lo \
1732         hash/adler32.lo \
1733         hash/crc32.lo \
1734         hash/crc64.lo \
1735         hash/fnv.lo \
1736         net/http/cgi.lo \
1737         net/http/fcgi.lo \
1738         net/http/httptest.lo \
1739         net/http/httputil.lo \
1740         net/http/pprof.lo \
1741         image/bmp.lo \
1742         image/color.lo \
1743         image/draw.lo \
1744         image/gif.lo \
1745         image/jpeg.lo \
1746         image/png.lo \
1747         image/tiff.lo \
1748         image/ycbcr.lo \
1749         index/suffixarray.lo \
1750         io/ioutil.lo \
1751         log/syslog.lo \
1752         log/syslog/syslog_c.lo \
1753         math/big.lo \
1754         math/cmplx.lo \
1755         math/rand.lo \
1756         mime/mime.lo \
1757         mime/multipart.lo \
1758         net/dict.lo \
1759         net/http.lo \
1760         net/mail.lo \
1761         net/rpc.lo \
1762         net/smtp.lo \
1763         net/textproto.lo \
1764         net/url.lo \
1765         old/netchan.lo \
1766         old/regexp.lo \
1767         old/template.lo \
1768         $(os_lib_inotify_lo) \
1769         os/user.lo \
1770         os/signal.lo \
1771         path/filepath.lo \
1772         regexp/syntax.lo \
1773         net/rpc/jsonrpc.lo \
1774         runtime/debug.lo \
1775         runtime/pprof.lo \
1776         sync/atomic.lo \
1777         sync/atomic_c.lo \
1778         syscall/syscall.lo \
1779         syscall/errno.lo \
1780         syscall/wait.lo \
1781         text/scanner.lo \
1782         text/tabwriter.lo \
1783         text/template.lo \
1784         text/template/parse.lo \
1785         testing/testing.lo \
1786         testing/iotest.lo \
1787         testing/quick.lo \
1788         testing/script.lo \
1789         unicode/utf16.lo \
1790         unicode/utf8.lo
1791
1792 libgo_la_SOURCES = $(runtime_files)
1793
1794 libgo_la_LDFLAGS = $(PTHREAD_CFLAGS) $(AM_LDFLAGS)
1795
1796 libgo_la_LIBADD = \
1797         $(libgo_go_objs) $(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS)
1798
1799 libgobegin_a_SOURCES = \
1800         runtime/go-main.c
1801
1802 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
1803
1804 GOCFLAGS = $(CFLAGS)
1805 AM_GOCFLAGS = $(STRINGOPS_FLAG)
1806 GOCOMPILE = $(GOC) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_GOCFLAGS) $(GOCFLAGS)
1807
1808 LTGOCOMPILE = $(LIBTOOL) --tag GO --mode=compile $(GOC) $(INCLUDES) \
1809         $(AM_GOCFLAGS) $(GOCFLAGS)
1810
1811 GOLINK = $(LIBTOOL) --tag GO --mode-link $(GOC) \
1812         $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_GOCFLAGS) $(LTLDFLAGS) -o $@
1813
1814 # Build the dependencies for a Go package.
1815 BUILDDEPS = \
1816         $(MKDIR_P) $(@D); \
1817         $(SHELL) $(srcdir)/godeps.sh `echo $@ | sed -e 's/.dep$$//'` $^ > $@.tmp; \
1818         mv -f $@.tmp $@
1819
1820 # Build the .go files for a package, generating a .lo file.
1821 BUILDPACKAGE = \
1822         $(MKDIR_P) $(@D); \
1823         files=`echo $^ | sed -e 's/[^ ]*\.gox//g'`; \
1824         $(LTGOCOMPILE) -I . -c -fgo-prefix="libgo_$(@D)" -o $@ $$files
1825
1826 if LIBGO_IS_RTEMS
1827 use_dejagnu = yes
1828 else
1829 use_dejagnu = no
1830 endif
1831
1832 GOTESTFLAGS =
1833
1834 # Check a package.
1835 CHECK = \
1836         GC="$(GOC) $(GOCFLAGS) -L `${PWD_COMMAND}` -L `${PWD_COMMAND}`/.libs"; \
1837         export GC; \
1838         GOLIBS="$(MATH_LIBS) $(NET_LIBS)"; \
1839         export GOLIBS; \
1840         RUNTESTFLAGS="$(RUNTESTFLAGS)"; \
1841         export RUNTESTFLAGS; \
1842         MAKE="$(MAKE)"; \
1843         export MAKE; \
1844         libgccdir=`${GOC} -print-libgcc-file-name | sed -e 's|/[^/]*$$||'`; \
1845         LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
1846         LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
1847         export LD_LIBRARY_PATH; \
1848         rm -f $@-testsum $@-testlog; \
1849         prefix=`if test "$(@D)" = "regexp"; then echo regexp-test; else dirname $(@D); fi`; \
1850         test "$${prefix}" != "." || prefix="$(@D)"; \
1851         if test "$(use_dejagnu)" = "yes"; then \
1852           $(SHELL) $(srcdir)/testsuite/gotest --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --prefix="libgo_$${prefix}" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" --testname="$(@D)" $(GOTESTFLAGS); \
1853         else \
1854           if $(SHELL) $(srcdir)/testsuite/gotest --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --prefix="libgo_$${prefix}" --pkgfiles="$(go_$(subst /,_,$(@D))_files)" $(GOTESTFLAGS) >>$@-testlog 2>&1; then \
1855             echo "PASS: $(@D)" >> $@-testlog; \
1856             echo "PASS: $(@D)"; \
1857             echo "PASS: $(@D)" > $@-testsum; \
1858           else \
1859             echo "FAIL: $(@D)" >> $@-testlog; \
1860             cat $@-testlog; \
1861             echo "FAIL: $(@D)" > $@-testsum; \
1862             exit 1; \
1863           fi; \
1864         fi
1865
1866 # Build all packages before checking any.
1867 CHECK_DEPS = libgo.la libgobegin.a \
1868         $(toolexeclibgo_DATA) \
1869         $(toolexeclibgoarchive_DATA) \
1870         $(toolexeclibgocompress_DATA) \
1871         $(toolexeclibgocontainer_DATA) \
1872         $(toolexeclibgocrypto_DATA) \
1873         $(toolexeclibgocryptoopenpgp_DATA) \
1874         $(toolexeclibgodebug_DATA) \
1875         $(toolexeclibgoencoding_DATA) \
1876         $(toolexeclibgoexp_DATA) \
1877         $(toolexeclibgogo_DATA) \
1878         $(toolexeclibgohash_DATA) \
1879         $(toolexeclibgoimage_DATA) \
1880         $(toolexeclibgoindex_DATA) \
1881         $(toolexeclibgoio_DATA) \
1882         $(toolexeclibgolog_DATA) \
1883         $(toolexeclibgomath_DATA) \
1884         $(toolexeclibgomime_DATA) \
1885         $(toolexeclibgonet_DATA) \
1886         $(toolexeclibgonethttp_DATA) \
1887         $(toolexeclibgoos_DATA) \
1888         $(toolexeclibgopath_DATA) \
1889         $(toolexeclibgorpc_DATA) \
1890         $(toolexeclibgoruntime_DATA) \
1891         $(toolexeclibgosync_DATA) \
1892         $(toolexeclibgotesting_DATA) \
1893         $(toolexeclibgotext_DATA) \
1894         $(toolexeclibgotexttemplate_DATA) \
1895         $(toolexeclibgounicode_DATA)
1896
1897 @go_include@ bufio/bufio.lo.dep
1898 bufio/bufio.lo.dep: $(go_bufio_files)
1899         $(BUILDDEPS)
1900 bufio/bufio.lo: $(go_bufio_files)
1901         $(BUILDPACKAGE)
1902 bufio/check: $(CHECK_DEPS)
1903         @$(CHECK)
1904 .PHONY: bufio/check
1905
1906 @go_include@ bytes/bytes.lo.dep
1907 bytes/bytes.lo.dep: $(go_bytes_files)
1908         $(BUILDDEPS)
1909 bytes/bytes.lo: $(go_bytes_files)
1910         $(BUILDPACKAGE)
1911 bytes/index.lo: $(go_bytes_c_files) bytes/bytes.lo
1912         $(LTCOMPILE) -c -o bytes/index.lo $(srcdir)/go/bytes/indexbyte.c
1913 bytes/check: $(CHECK_DEPS)
1914         @$(CHECK)
1915 .PHONY: bytes/check
1916
1917 @go_include@ crypto/crypto.lo.dep
1918 crypto/crypto.lo.dep: $(go_crypto_files)
1919         $(BUILDDEPS)
1920 crypto/crypto.lo: $(go_crypto_files)
1921         $(BUILDPACKAGE)
1922 crypto/check: $(CHECK_DEPS)
1923         @$(CHECK)
1924 .PHONY: crypto/check
1925
1926 @go_include@ errors/errors.lo.dep
1927 errors/errors.lo.dep: $(go_errors_files)
1928         $(BUILDDEPS)
1929 errors/errors.lo: $(go_errors_files)
1930         $(BUILDPACKAGE)
1931 errors/check: $(CHECK_DEPS)
1932         @$(CHECK)
1933 .PHONY: errors/check
1934
1935 @go_include@ expvar/expvar.lo.dep
1936 expvar/expvar.lo.dep: $(go_expvar_files)
1937         $(BUILDDEPS)
1938 expvar/expvar.lo: $(go_expvar_files)
1939         $(BUILDPACKAGE)
1940 expvar/check: $(CHECK_DEPS)
1941         @$(CHECK)
1942 .PHONY: expvar/check
1943
1944 @go_include@ flag/flag.lo.dep
1945 flag/flag.lo.dep: $(go_flag_files)
1946         $(BUILDDEPS)
1947 flag/flag.lo: $(go_flag_files)
1948         $(BUILDPACKAGE)
1949 flag/check: $(CHECK_DEPS)
1950         @$(CHECK)
1951 .PHONY: flag/check
1952
1953 @go_include@ fmt/fmt.lo.dep
1954 fmt/fmt.lo.dep: $(go_fmt_files)
1955         $(BUILDDEPS)
1956 fmt/fmt.lo: $(go_fmt_files)
1957         $(BUILDPACKAGE)
1958 fmt/check: $(CHECK_DEPS)
1959         @$(CHECK)
1960 .PHONY: fmt/check
1961
1962 @go_include@ hash/hash.lo.dep
1963 hash/hash.lo.dep: $(go_hash_files)
1964         $(BUILDDEPS)
1965 hash/hash.lo: $(go_hash_files)
1966         $(BUILDPACKAGE)
1967 hash/check: $(CHECK_DEPS)
1968         @$(CHECK)
1969 .PHONY: hash/check
1970
1971 @go_include@ html/html.lo.dep
1972 html/html.lo.dep: $(go_html_files)
1973         $(BUILDDEPS)
1974 html/html.lo: $(go_html_files)
1975         $(BUILDPACKAGE)
1976 html/check: $(CHECK_DEPS)
1977         @$(CHECK)
1978 .PHONY: html/check
1979
1980 @go_include@ image/image.lo.dep
1981 image/image.lo.dep: $(go_image_files)
1982         $(BUILDDEPS)
1983 image/image.lo: $(go_image_files)
1984         $(BUILDPACKAGE)
1985 image/check: $(CHECK_DEPS)
1986         @$(CHECK)
1987 .PHONY: image/check
1988
1989 @go_include@ io/io.lo.dep
1990 io/io.lo.dep: $(go_io_files)
1991         $(BUILDDEPS)
1992 io/io.lo: $(go_io_files)
1993         $(BUILDPACKAGE)
1994 io/check: $(CHECK_DEPS)
1995         @$(CHECK)
1996 .PHONY: io/check
1997
1998 @go_include@ log/log.lo.dep
1999 log/log.lo.dep: $(go_log_files)
2000         $(BUILDDEPS)
2001 log/log.lo: $(go_log_files)
2002         $(BUILDPACKAGE)
2003 log/check: $(CHECK_DEPS)
2004         @$(CHECK)
2005 .PHONY: log/check
2006
2007 @go_include@ math/math.lo.dep
2008 math/math.lo.dep: $(go_math_files)
2009         $(BUILDDEPS)
2010 math/math.lo: $(go_math_files)
2011         $(BUILDPACKAGE)
2012 math/check: $(CHECK_DEPS)
2013         @$(CHECK)
2014 .PHONY: math/check
2015
2016 @go_include@ mime/mime.lo.dep
2017 mime/mime.lo.dep: $(go_mime_files)
2018         $(BUILDDEPS)
2019 mime/mime.lo: $(go_mime_files)
2020         $(BUILDPACKAGE)
2021 mime/check: $(CHECK_DEPS)
2022         @$(CHECK)
2023 .PHONY: mime/check
2024
2025 @go_include@ net/net.lo.dep
2026 net/net.lo.dep: $(go_net_files)
2027         $(BUILDDEPS)
2028 net/net.lo: $(go_net_files)
2029         $(BUILDPACKAGE)
2030 net/check: $(CHECK_DEPS)
2031         @$(CHECK)
2032 .PHONY: net/check
2033
2034 @go_include@ os/os.lo.dep
2035 os/os.lo.dep: $(go_os_files)
2036         $(BUILDDEPS)
2037 os/os.lo: $(go_os_files)
2038         $(BUILDPACKAGE)
2039 os/check: $(CHECK_DEPS)
2040         @$(CHECK)
2041 .PHONY: os/check
2042
2043 signal_unix.go: $(srcdir)/go/os/mkunixsignals.sh sysinfo.go
2044         $(SHELL) $(srcdir)/go/os/mkunixsignals.sh sysinfo.go > $@.tmp
2045         mv -f $@.tmp $@
2046
2047 @go_include@ patch/patch.lo.dep
2048 patch/patch.lo.dep: $(go_patch_files)
2049         $(BUILDDEPS)
2050 patch/patch.lo: $(go_patch_files)
2051         $(BUILDPACKAGE)
2052 patch/check: $(CHECK_DEPS)
2053         @$(CHECK)
2054 .PHONY: patch/check
2055
2056 @go_include@ path/path.lo.dep
2057 path/path.lo.dep: $(go_path_files)
2058         $(BUILDDEPS)
2059 path/path.lo: $(go_path_files)
2060         $(BUILDPACKAGE)
2061 path/check: $(CHECK_DEPS)
2062         @$(CHECK)
2063 .PHONY: path/check
2064
2065 @go_include@ reflect/reflect.lo.dep
2066 reflect/reflect.lo.dep: $(go_reflect_files)
2067         $(BUILDDEPS)
2068 reflect/reflect.lo: $(go_reflect_files)
2069         $(BUILDPACKAGE)
2070 reflect/check: $(CHECK_DEPS)
2071         @$(CHECK)
2072 .PHONY: reflect/check
2073
2074 @go_include@ regexp/regexp.lo.dep
2075 regexp/regexp.lo.dep: $(go_regexp_files)
2076         $(BUILDDEPS)
2077 regexp/regexp.lo: $(go_regexp_files)
2078         $(BUILDPACKAGE)
2079 regexp/check: $(CHECK_DEPS)
2080         @$(CHECK)
2081 .PHONY: regexp/check
2082
2083 @go_include@ runtime/runtime.lo.dep
2084 runtime/runtime.lo.dep: $(go_runtime_files)
2085         $(BUILDDEPS)
2086 runtime/runtime.lo: $(go_runtime_files)
2087         $(BUILDPACKAGE)
2088 runtime/check: $(CHECK_DEPS)
2089         @$(CHECK)
2090 .PHONY: runtime/check
2091
2092 @go_include@ text/scanner.lo.dep
2093 text/scanner.lo.dep: $(go_text_scanner_files)
2094         $(BUILDDEPS)
2095 text/scanner.lo: $(go_text_scanner_files)
2096         $(BUILDPACKAGE)
2097 text/scanner/check: $(CHECK_DEPS)
2098         @$(MKDIR_P) text/scanner
2099         @$(CHECK)
2100 .PHONY: text/scanner/check
2101
2102 @go_include@ sort/sort.lo.dep
2103 sort/sort.lo.dep: $(go_sort_files)
2104         $(BUILDDEPS)
2105 sort/sort.lo: $(go_sort_files)
2106         $(BUILDPACKAGE)
2107 sort/check: $(CHECK_DEPS)
2108         @$(CHECK)
2109 .PHONY: sort/check
2110
2111 @go_include@ strconv/strconv.lo.dep
2112 strconv/strconv.lo.dep: $(go_strconv_files)
2113         $(BUILDDEPS)
2114 strconv/strconv.lo: $(go_strconv_files)
2115         $(BUILDPACKAGE)
2116 strconv/check: $(CHECK_DEPS)
2117         @$(CHECK)
2118 .PHONY: strconv/check
2119
2120 @go_include@ strings/strings.lo.dep
2121 strings/strings.lo.dep: $(go_strings_files)
2122         $(BUILDDEPS)
2123 strings/strings.lo: $(go_strings_files)
2124         $(BUILDPACKAGE)
2125 strings/check: $(CHECK_DEPS)
2126         @$(CHECK)
2127 .PHONY: strings/check
2128
2129 @go_include@ sync/sync.lo.dep
2130 sync/sync.lo.dep: $(go_sync_files)
2131         $(BUILDDEPS)
2132 sync/sync.lo: $(go_sync_files)
2133         $(BUILDPACKAGE)
2134 sync/check: $(CHECK_DEPS)
2135         @$(CHECK)
2136 .PHONY: sync/check
2137
2138 @go_include@ testing/testing.lo.dep
2139 testing/testing.lo.dep: $(go_testing_files)
2140         $(BUILDDEPS)
2141 testing/testing.lo: $(go_testing_files)
2142         $(BUILDPACKAGE)
2143 testing/check: $(CHECK_DEPS)
2144         @$(CHECK)
2145 .PHONY: testing/check
2146
2147 @go_include@ time/time.lo.dep
2148 time/time.lo.dep: $(go_time_files)
2149         $(BUILDDEPS)
2150 time/time.lo: $(go_time_files)
2151         $(BUILDPACKAGE)
2152 time/check: $(CHECK_DEPS)
2153         @$(CHECK)
2154 .PHONY: time/check
2155
2156 @go_include@ unicode/unicode.lo.dep
2157 unicode/unicode.lo.dep: $(go_unicode_files)
2158         $(BUILDDEPS)
2159 unicode/unicode.lo: $(go_unicode_files)
2160         $(BUILDPACKAGE)
2161 unicode/check: $(CHECK_DEPS)
2162         @$(CHECK)
2163 .PHONY: unicode/check
2164
2165 @go_include@ websocket/websocket.lo.dep
2166 websocket/websocket.lo.dep: $(go_websocket_files)
2167         $(BUILDDEPS)
2168 websocket/websocket.lo: $(go_websocket_files)
2169         $(BUILDPACKAGE)
2170 websocket/check: $(CHECK_DEPS)
2171         @$(CHECK)
2172 .PHONY: websocket/check
2173
2174 @go_include@ archive/tar.lo.dep
2175 archive/tar.lo.dep: $(go_archive_tar_files)
2176         $(BUILDDEPS)
2177 archive/tar.lo: $(go_archive_tar_files)
2178         $(BUILDPACKAGE)
2179 archive/tar/check: $(CHECK_DEPS)
2180         @$(MKDIR_P) archive/tar
2181         @$(CHECK)
2182 .PHONY: archive/tar/check
2183
2184 @go_include@ archive/zip.lo.dep
2185 archive/zip.lo.dep: $(go_archive_zip_files)
2186         $(BUILDDEPS)
2187 archive/zip.lo: $(go_archive_zip_files)
2188         $(BUILDPACKAGE)
2189 archive/zip/check: $(CHECK_DEPS)
2190         @$(MKDIR_P) archive/zip
2191         @$(CHECK)
2192 .PHONY: archive/zip/check
2193
2194 @go_include@ compress/bzip2.lo.dep
2195 compress/bzip2.lo.dep: $(go_compress_bzip2_files)
2196         $(BUILDDEPS)
2197 compress/bzip2.lo: $(go_compress_bzip2_files)
2198         $(BUILDPACKAGE)
2199 compress/bzip2/check: $(CHECK_DEPS)
2200         @$(MKDIR_P) compress/bzip2
2201         @$(CHECK)
2202 .PHONY: compress/bzip2/check
2203
2204 @go_include@ compress/flate.lo.dep
2205 compress/flate.lo.dep: $(go_compress_flate_files)
2206         $(BUILDDEPS)
2207 compress/flate.lo: $(go_compress_flate_files)
2208         $(BUILDPACKAGE)
2209 compress/flate/check: $(CHECK_DEPS)
2210         @$(MKDIR_P) compress/flate
2211         @$(CHECK)
2212 .PHONY: compress/flate/check
2213
2214 @go_include@ compress/gzip.lo.dep
2215 compress/gzip.lo.dep: $(go_compress_gzip_files)
2216         $(BUILDDEPS)
2217 compress/gzip.lo: $(go_compress_gzip_files)
2218         $(BUILDPACKAGE)
2219 compress/gzip/check: $(CHECK_DEPS)
2220         @$(MKDIR_P) compress/gzip
2221         @$(CHECK)
2222 .PHONY: compress/gzip/check
2223
2224 @go_include@ compress/lzw.lo.dep
2225 compress/lzw.lo.dep: $(go_compress_lzw_files)
2226         $(BUILDDEPS)
2227 compress/lzw.lo: $(go_compress_lzw_files)
2228         $(BUILDPACKAGE)
2229 compress/lzw/check: $(CHECK_DEPS)
2230         @$(MKDIR_P) compress/lzw
2231         @$(CHECK)
2232 .PHONY: compress/lzw/check
2233
2234 @go_include@ compress/zlib.lo.dep
2235 compress/zlib.lo.dep: $(go_compress_zlib_files)
2236         $(BUILDDEPS)
2237 compress/zlib.lo: $(go_compress_zlib_files)
2238         $(BUILDPACKAGE)
2239 compress/zlib/check: $(CHECK_DEPS)
2240         @$(MKDIR_P) compress/zlib
2241         @$(CHECK)
2242 .PHONY: compress/zlib/check
2243
2244 @go_include@ container/heap.lo.dep
2245 container/heap.lo.dep: $(go_container_heap_files)
2246         $(BUILDDEPS)
2247 container/heap.lo: $(go_container_heap_files)
2248         $(BUILDPACKAGE)
2249 container/heap/check: $(CHECK_DEPS)
2250         @$(MKDIR_P) container/heap
2251         @$(CHECK)
2252 .PHONY: container/heap/check
2253
2254 @go_include@ container/list.lo.dep
2255 container/list.lo.dep: $(go_container_list_files)
2256         $(BUILDDEPS)
2257 container/list.lo: $(go_container_list_files)
2258         $(BUILDPACKAGE)
2259 container/list/check: $(CHECK_DEPS)
2260         @$(MKDIR_P) container/list
2261         @$(CHECK)
2262 .PHONY: container/list/check
2263
2264 @go_include@ container/ring.lo.dep
2265 container/ring.lo.dep: $(go_container_ring_files)
2266         $(BUILDDEPS)
2267 container/ring.lo: $(go_container_ring_files)
2268         $(BUILDPACKAGE)
2269 container/ring/check: $(CHECK_DEPS)
2270         @$(MKDIR_P) container/ring
2271         @$(CHECK)
2272 .PHONY: container/ring/check
2273
2274 @go_include@ crypto/aes.lo.dep
2275 crypto/aes.lo.dep: $(go_crypto_aes_files)
2276         $(BUILDDEPS)
2277 crypto/aes.lo: $(go_crypto_aes_files)
2278         $(BUILDPACKAGE)
2279 crypto/aes/check: $(CHECK_DEPS)
2280         @$(MKDIR_P) crypto/aes
2281         @$(CHECK)
2282 .PHONY: crypto/aes/check
2283
2284 @go_include@ crypto/bcrypt.lo.dep
2285 crypto/bcrypt.lo.dep: $(go_crypto_bcrypt_files)
2286         $(BUILDDEPS)
2287 crypto/bcrypt.lo: $(go_crypto_bcrypt_files)
2288         $(BUILDPACKAGE)
2289 crypto/bcrypt/check: $(CHECK_DEPS)
2290         @$(MKDIR_P) crypto/bcrypt
2291         @$(CHECK)
2292 .PHONY: crypto/bcrypt/check
2293
2294 @go_include@ crypto/blowfish.lo.dep
2295 crypto/blowfish.lo.dep: $(go_crypto_blowfish_files)
2296         $(BUILDDEPS)
2297 crypto/blowfish.lo: $(go_crypto_blowfish_files)
2298         $(BUILDPACKAGE)
2299 crypto/blowfish/check: $(CHECK_DEPS)
2300         @$(MKDIR_P) crypto/blowfish
2301         @$(CHECK)
2302 .PHONY: crypto/blowfish/check
2303
2304 @go_include@ crypto/cast5.lo.dep
2305 crypto/cast5.lo.dep: $(go_crypto_cast5_files)
2306         $(BUILDDEPS)
2307 crypto/cast5.lo: $(go_crypto_cast5_files)
2308         $(BUILDPACKAGE)
2309 crypto/cast5/check: $(CHECK_DEPS)
2310         @$(MKDIR_P) crypto/cast5
2311         @$(CHECK)
2312 .PHONY: crypto/cast5/check
2313
2314 @go_include@ crypto/cipher.lo.dep
2315 crypto/cipher.lo.dep: $(go_crypto_cipher_files)
2316         $(BUILDDEPS)
2317 crypto/cipher.lo: $(go_crypto_cipher_files)
2318         $(BUILDPACKAGE)
2319 crypto/cipher/check: $(CHECK_DEPS)
2320         @$(MKDIR_P) crypto/cipher
2321         @$(CHECK)
2322 .PHONY: crypto/cipher/check
2323
2324 @go_include@ crypto/des.lo.dep
2325 crypto/des.lo.dep: $(go_crypto_des_files)
2326         $(BUILDDEPS)
2327 crypto/des.lo: $(go_crypto_des_files)
2328         $(BUILDPACKAGE)
2329 crypto/des/check: $(CHECK_DEPS)
2330         @$(MKDIR_P) crypto/des
2331         @$(CHECK)
2332 .PHONY: crypto/des/check
2333
2334 @go_include@ crypto/dsa.lo.dep
2335 crypto/dsa.lo.dep: $(go_crypto_dsa_files)
2336         $(BUILDDEPS)
2337 crypto/dsa.lo: $(go_crypto_dsa_files)
2338         $(BUILDPACKAGE)
2339 crypto/dsa/check: $(CHECK_DEPS)
2340         @$(MKDIR_P) crypto/dsa
2341         @$(CHECK)
2342 .PHONY: crypto/dsa/check
2343
2344 @go_include@ crypto/ecdsa.lo.dep
2345 crypto/ecdsa.lo.dep: $(go_crypto_ecdsa_files)
2346         $(BUILDDEPS)
2347 crypto/ecdsa.lo: $(go_crypto_ecdsa_files)
2348         $(BUILDPACKAGE)
2349 crypto/ecdsa/check: $(CHECK_DEPS)
2350         @$(MKDIR_P) crypto/ecdsa
2351         @$(CHECK)
2352 .PHONY: crypto/ecdsa/check
2353
2354 @go_include@ crypto/elliptic.lo.dep
2355 crypto/elliptic.lo.dep: $(go_crypto_elliptic_files)
2356         $(BUILDDEPS)
2357 crypto/elliptic.lo: $(go_crypto_elliptic_files)
2358         $(BUILDPACKAGE)
2359 crypto/elliptic/check: $(CHECK_DEPS)
2360         @$(MKDIR_P) crypto/elliptic
2361         @$(CHECK)
2362 .PHONY: crypto/elliptic/check
2363
2364 @go_include@ crypto/hmac.lo.dep
2365 crypto/hmac.lo.dep: $(go_crypto_hmac_files)
2366         $(BUILDDEPS)
2367 crypto/hmac.lo: $(go_crypto_hmac_files)
2368         $(BUILDPACKAGE)
2369 crypto/hmac/check: $(CHECK_DEPS)
2370         @$(MKDIR_P) crypto/hmac
2371         @$(CHECK)
2372 .PHONY: crypto/hmac/check
2373
2374 @go_include@ crypto/md4.lo.dep
2375 crypto/md4.lo.dep: $(go_crypto_md4_files)
2376         $(BUILDDEPS)
2377 crypto/md4.lo: $(go_crypto_md4_files)
2378         $(BUILDPACKAGE)
2379 crypto/md4/check: $(CHECK_DEPS)
2380         @$(MKDIR_P) crypto/md4
2381         @$(CHECK)
2382 .PHONY: crypto/md4/check
2383
2384 @go_include@ crypto/md5.lo.dep
2385 crypto/md5.lo.dep: $(go_crypto_md5_files)
2386         $(BUILDDEPS)
2387 crypto/md5.lo: $(go_crypto_md5_files)
2388         $(BUILDPACKAGE)
2389 crypto/md5/check: $(CHECK_DEPS)
2390         @$(MKDIR_P) crypto/md5
2391         @$(CHECK)
2392 .PHONY: crypto/md5/check
2393
2394 @go_include@ crypto/ocsp.lo.dep
2395 crypto/ocsp.lo.dep: $(go_crypto_ocsp_files)
2396         $(BUILDDEPS)
2397 crypto/ocsp.lo: $(go_crypto_ocsp_files)
2398         $(BUILDPACKAGE)
2399 crypto/ocsp/check: $(CHECK_DEPS)
2400         @$(MKDIR_P) crypto/ocsp
2401         @$(CHECK)
2402 .PHONY: crypto/ocsp/check
2403
2404 @go_include@ crypto/openpgp.lo.dep
2405 crypto/openpgp.lo.dep: $(go_crypto_openpgp_files)
2406         $(BUILDDEPS)
2407 crypto/openpgp.lo: $(go_crypto_openpgp_files)
2408         $(BUILDPACKAGE)
2409 crypto/openpgp/check: $(CHECK_DEPS)
2410         @$(MKDIR_P) crypto/openpgp
2411         @$(CHECK)
2412 .PHONY: crypto/openpgp/check
2413
2414 @go_include@ crypto/rand.lo.dep
2415 crypto/rand.lo.dep: $(go_crypto_rand_files)
2416         $(BUILDDEPS)
2417 crypto/rand.lo: $(go_crypto_rand_files)
2418         $(BUILDPACKAGE)
2419 crypto/rand/check: $(CHECK_DEPS)
2420         @$(MKDIR_P) crypto/rand
2421         @$(CHECK)
2422 .PHONY: crypto/rand/check
2423
2424 @go_include@ crypto/rc4.lo.dep
2425 crypto/rc4.lo.dep: $(go_crypto_rc4_files)
2426         $(BUILDDEPS)
2427 crypto/rc4.lo: $(go_crypto_rc4_files)
2428         $(BUILDPACKAGE)
2429 crypto/rc4/check: $(CHECK_DEPS)
2430         @$(MKDIR_P) crypto/rc4
2431         @$(CHECK)
2432 .PHONY: crypto/rc4/check
2433
2434 @go_include@ crypto/ripemd160.lo.dep
2435 crypto/ripemd160.lo.dep: $(go_crypto_ripemd160_files)
2436         $(BUILDDEPS)
2437 crypto/ripemd160.lo: $(go_crypto_ripemd160_files)
2438         $(BUILDPACKAGE)
2439 crypto/ripemd160/check: $(CHECK_DEPS)
2440         @$(MKDIR_P) crypto/ripemd160
2441         @$(CHECK)
2442 .PHONY: crypto/ripemd160/check
2443
2444 @go_include@ crypto/rsa.lo.dep
2445 crypto/rsa.lo.dep: $(go_crypto_rsa_files)
2446         $(BUILDDEPS)
2447 crypto/rsa.lo: $(go_crypto_rsa_files)
2448         $(BUILDPACKAGE)
2449 crypto/rsa/check: $(CHECK_DEPS)
2450         @$(MKDIR_P) crypto/rsa
2451         @$(CHECK)
2452 .PHONY: crypto/rsa/check
2453
2454 @go_include@ crypto/sha1.lo.dep
2455 crypto/sha1.lo.dep: $(go_crypto_sha1_files)
2456         $(BUILDDEPS)
2457 crypto/sha1.lo: $(go_crypto_sha1_files)
2458         $(BUILDPACKAGE)
2459 crypto/sha1/check: $(CHECK_DEPS)
2460         @$(MKDIR_P) crypto/sha1
2461         @$(CHECK)
2462 .PHONY: crypto/sha1/check
2463
2464 @go_include@ crypto/sha256.lo.dep
2465 crypto/sha256.lo.dep: $(go_crypto_sha256_files)
2466         $(BUILDDEPS)
2467 crypto/sha256.lo: $(go_crypto_sha256_files)
2468         $(BUILDPACKAGE)
2469 crypto/sha256/check: $(CHECK_DEPS)
2470         @$(MKDIR_P) crypto/sha256
2471         @$(CHECK)
2472 .PHONY: crypto/sha256/check
2473
2474 @go_include@ crypto/sha512.lo.dep
2475 crypto/sha512.lo.dep: $(go_crypto_sha512_files)
2476         $(BUILDDEPS)
2477 crypto/sha512.lo: $(go_crypto_sha512_files)
2478         $(BUILDPACKAGE)
2479 crypto/sha512/check: $(CHECK_DEPS)
2480         @$(MKDIR_P) crypto/sha512
2481         @$(CHECK)
2482 .PHONY: crypto/sha512/check
2483
2484 @go_include@ crypto/subtle.lo.dep
2485 crypto/subtle.lo.dep: $(go_crypto_subtle_files)
2486         $(BUILDDEPS)
2487 crypto/subtle.lo: $(go_crypto_subtle_files)
2488         $(BUILDPACKAGE)
2489 crypto/subtle/check: $(CHECK_DEPS)
2490         @$(MKDIR_P) crypto/subtle
2491         @$(CHECK)
2492 .PHONY: crypto/subtle/check
2493
2494 @go_include@ crypto/tls.lo.dep
2495 crypto/tls.lo.dep: $(go_crypto_tls_files)
2496         $(BUILDDEPS)
2497 crypto/tls.lo: $(go_crypto_tls_files)
2498         $(BUILDPACKAGE)
2499 crypto/tls/check: $(CHECK_DEPS)
2500         @$(MKDIR_P) crypto/tls
2501         @$(CHECK)
2502 .PHONY: crypto/tls/check
2503
2504 @go_include@ crypto/twofish.lo.dep
2505 crypto/twofish.lo.dep: $(go_crypto_twofish_files)
2506         $(BUILDDEPS)
2507 crypto/twofish.lo: $(go_crypto_twofish_files)
2508         $(BUILDPACKAGE)
2509 crypto/twofish/check: $(CHECK_DEPS)
2510         @$(MKDIR_P) crypto/twofish
2511         @$(CHECK)
2512 .PHONY: crypto/twofish/check
2513
2514 @go_include@ crypto/x509.lo.dep
2515 crypto/x509.lo.dep: $(go_crypto_x509_files)
2516         $(BUILDDEPS)
2517 crypto/x509.lo: $(go_crypto_x509_files)
2518         $(BUILDPACKAGE)
2519 crypto/x509/check: $(CHECK_DEPS)
2520         @$(MKDIR_P) crypto/x509
2521         @$(CHECK)
2522 .PHONY: crypto/x509/check
2523
2524 @go_include@ crypto/xtea.lo.dep
2525 crypto/xtea.lo.dep: $(go_crypto_xtea_files)
2526         $(BUILDDEPS)
2527 crypto/xtea.lo: $(go_crypto_xtea_files)
2528         $(BUILDPACKAGE)
2529 crypto/xtea/check: $(CHECK_DEPS)
2530         @$(MKDIR_P) crypto/xtea
2531         @$(CHECK)
2532 .PHONY: crypto/xtea/check
2533
2534 @go_include@ crypto/openpgp/armor.lo.dep
2535 crypto/openpgp/armor.lo.dep: $(go_crypto_openpgp_armor_files)
2536         $(BUILDDEPS)
2537 crypto/openpgp/armor.lo: $(go_crypto_openpgp_armor_files)
2538         $(BUILDPACKAGE)
2539 crypto/openpgp/armor/check: $(CHECK_DEPS)
2540         @$(MKDIR_P) crypto/openpgp/armor
2541         @$(CHECK)
2542 .PHONY: crypto/openpgp/armor/check
2543
2544 @go_include@ crypto/openpgp/elgamal.lo.dep
2545 crypto/openpgp/elgamal.lo.dep: $(go_crypto_openpgp_elgamal_files)
2546         $(BUILDDEPS)
2547 crypto/openpgp/elgamal.lo: $(go_crypto_openpgp_elgamal_files)
2548         $(BUILDPACKAGE)
2549 crypto/openpgp/elgamal/check: $(CHECK_DEPS)
2550         @$(MKDIR_P) crypto/openpgp/elgamal
2551         @$(CHECK)
2552 .PHONY: crypto/openpgp/elgamal/check
2553
2554 @go_include@ crypto/openpgp/error.lo.dep
2555 crypto/openpgp/error.lo.dep: $(go_crypto_openpgp_error_files)
2556         $(BUILDDEPS)
2557 crypto/openpgp/error.lo: $(go_crypto_openpgp_error_files)
2558         $(BUILDPACKAGE)
2559 crypto/openpgp/error/check: $(CHECK_DEPS)
2560         @$(MKDIR_P) crypto/openpgp/error
2561         @$(CHECK)
2562 .PHONY: crypto/openpgp/error/check
2563
2564 @go_include@ crypto/openpgp/packet.lo.dep
2565 crypto/openpgp/packet.lo.dep: $(go_crypto_openpgp_packet_files)
2566         $(BUILDDEPS)
2567 crypto/openpgp/packet.lo: $(go_crypto_openpgp_packet_files)
2568         $(BUILDPACKAGE)
2569 crypto/openpgp/packet/check: $(CHECK_DEPS)
2570         @$(MKDIR_P) crypto/openpgp/packet
2571         @$(CHECK)
2572 .PHONY: crypto/openpgp/packet/check
2573
2574 @go_include@ crypto/openpgp/s2k.lo.dep
2575 crypto/openpgp/s2k.lo.dep: $(go_crypto_openpgp_s2k_files)
2576         $(BUILDDEPS)
2577 crypto/openpgp/s2k.lo: $(go_crypto_openpgp_s2k_files)
2578         $(BUILDPACKAGE)
2579 crypto/openpgp/s2k/check: $(CHECK_DEPS)
2580         @$(MKDIR_P) crypto/openpgp/s2k
2581         @$(CHECK)
2582 .PHONY: crypto/openpgp/s2k/check
2583
2584 @go_include@ crypto/x509/pkix.lo.dep
2585 crypto/x509/pkix.lo.dep: $(go_crypto_x509_pkix_files)
2586         $(BUILDDEPS)
2587 crypto/x509/pkix.lo: $(go_crypto_x509_pkix_files)
2588         $(BUILDPACKAGE)
2589 crypto/x509/pkix/check: $(CHECK_DEPS)
2590         @$(MKDIR_P) crypto/x509/pkix
2591         @$(CHECK)
2592 .PHONY: crypto/x509/pkix/check
2593
2594 @go_include@ debug/dwarf.lo.dep
2595 debug/dwarf.lo.dep: $(go_debug_dwarf_files)
2596         $(BUILDDEPS)
2597 debug/dwarf.lo: $(go_debug_dwarf_files)
2598         $(BUILDPACKAGE)
2599 debug/dwarf/check: $(CHECK_DEPS)
2600         @$(MKDIR_P) debug/dwarf
2601         @$(CHECK)
2602 .PHONY: debug/dwarf/check
2603
2604 @go_include@ debug/elf.lo.dep
2605 debug/elf.lo.dep: $(go_debug_elf_files)
2606         $(BUILDDEPS)
2607 debug/elf.lo: $(go_debug_elf_files)
2608         $(BUILDPACKAGE)
2609 debug/elf/check: $(CHECK_DEPS)
2610         @$(MKDIR_P) debug/elf
2611         @$(CHECK)
2612 .PHONY: debug/elf/check
2613
2614 @go_include@ debug/gosym.lo.dep
2615 debug/gosym.lo.dep: $(go_debug_gosym_files)
2616         $(BUILDDEPS)
2617 debug/gosym.lo: $(go_debug_gosym_files)
2618         $(BUILDPACKAGE)
2619 debug/gosym/check: $(CHECK_DEPS)
2620         @$(MKDIR_P) debug/gosym
2621         @$(CHECK)
2622 .PHONY: debug/gosym/check
2623
2624 @go_include@ debug/macho.lo.dep
2625 debug/macho.lo.dep: $(go_debug_macho_files)
2626         $(BUILDDEPS)
2627 debug/macho.lo: $(go_debug_macho_files)
2628         $(BUILDPACKAGE)
2629 debug/macho/check: $(CHECK_DEPS)
2630         @$(MKDIR_P) debug/macho
2631         @$(CHECK)
2632 .PHONY: debug/macho/check
2633
2634 @go_include@ debug/pe.lo.dep
2635 debug/pe.lo.dep: $(go_debug_pe_files)
2636         $(BUILDDEPS)
2637 debug/pe.lo: $(go_debug_pe_files)
2638         $(BUILDPACKAGE)
2639 debug/pe/check: $(CHECK_DEPS)
2640         @$(MKDIR_P) debug/pe
2641         @$(CHECK)
2642 .PHONY: debug/pe/check
2643
2644 @go_include@ encoding/asn1.lo.dep
2645 encoding/asn1.lo.dep: $(go_encoding_asn1_files)
2646         $(BUILDDEPS)
2647 encoding/asn1.lo: $(go_encoding_asn1_files)
2648         $(BUILDPACKAGE)
2649 encoding/asn1/check: $(CHECK_DEPS)
2650         @$(MKDIR_P) encoding/asn1
2651         @$(CHECK)
2652 .PHONY: encoding/asn1/check
2653
2654 @go_include@ encoding/ascii85.lo.dep
2655 encoding/ascii85.lo.dep: $(go_encoding_ascii85_files)
2656         $(BUILDDEPS)
2657 encoding/ascii85.lo: $(go_encoding_ascii85_files)
2658         $(BUILDPACKAGE)
2659 encoding/ascii85/check: $(CHECK_DEPS)
2660         @$(MKDIR_P) encoding/ascii85
2661         @$(CHECK)
2662 .PHONY: encoding/ascii85/check
2663
2664 @go_include@ encoding/base32.lo.dep
2665 encoding/base32.lo.dep: $(go_encoding_base32_files)
2666         $(BUILDDEPS)
2667 encoding/base32.lo: $(go_encoding_base32_files)
2668         $(BUILDPACKAGE)
2669 encoding/base32/check: $(CHECK_DEPS)
2670         @$(MKDIR_P) encoding/base32
2671         @$(CHECK)
2672 .PHONY: encoding/base32/check
2673
2674 @go_include@ encoding/base64.lo.dep
2675 encoding/base64.lo.dep: $(go_encoding_base64_files)
2676         $(BUILDDEPS)
2677 encoding/base64.lo: $(go_encoding_base64_files)
2678         $(BUILDPACKAGE)
2679 encoding/base64/check: $(CHECK_DEPS)
2680         @$(MKDIR_P) encoding/base64
2681         @$(CHECK)
2682 .PHONY: encoding/base64/check
2683
2684 @go_include@ encoding/binary.lo.dep
2685 encoding/binary.lo.dep: $(go_encoding_binary_files)
2686         $(BUILDDEPS)
2687 encoding/binary.lo: $(go_encoding_binary_files)
2688         $(BUILDPACKAGE)
2689 encoding/binary/check: $(CHECK_DEPS)
2690         @$(MKDIR_P) encoding/binary
2691         @$(CHECK)
2692 .PHONY: encoding/binary/check
2693
2694 @go_include@ encoding/csv.lo.dep
2695 encoding/csv.lo.dep: $(go_encoding_csv_files)
2696         $(BUILDDEPS)
2697 encoding/csv.lo: $(go_encoding_csv_files)
2698         $(BUILDPACKAGE)
2699 encoding/csv/check: $(CHECK_DEPS)
2700         @$(MKDIR_P) encoding/csv
2701         @$(CHECK)
2702 .PHONY: encoding/csv/check
2703
2704 @go_include@ encoding/git85.lo.dep
2705 encoding/git85.lo.dep: $(go_encoding_git85_files)
2706         $(BUILDDEPS)
2707 encoding/git85.lo: $(go_encoding_git85_files)
2708         $(BUILDPACKAGE)
2709 encoding/git85/check: $(CHECK_DEPS)
2710         @$(MKDIR_P) encoding/git85
2711         @$(CHECK)
2712 .PHONY: encoding/git85/check
2713
2714 @go_include@ encoding/gob.lo.dep
2715 encoding/gob.lo.dep: $(go_encoding_gob_files)
2716         $(BUILDDEPS)
2717 encoding/gob.lo: $(go_encoding_gob_files)
2718         $(BUILDPACKAGE)
2719 encoding/gob/check: $(CHECK_DEPS)
2720         @$(MKDIR_P) encoding/gob
2721         @$(CHECK)
2722 .PHONY: encoding/gob/check
2723
2724 @go_include@ encoding/hex.lo.dep
2725 encoding/hex.lo.dep: $(go_encoding_hex_files)
2726         $(BUILDDEPS)
2727 encoding/hex.lo: $(go_encoding_hex_files)
2728         $(BUILDPACKAGE)
2729 encoding/hex/check: $(CHECK_DEPS)
2730         @$(MKDIR_P) encoding/hex
2731         @$(CHECK)
2732 .PHONY: encoding/hex/check
2733
2734 @go_include@ encoding/json.lo.dep
2735 encoding/json.lo.dep: $(go_encoding_json_files)
2736         $(BUILDDEPS)
2737 encoding/json.lo: $(go_encoding_json_files)
2738         $(BUILDPACKAGE)
2739 encoding/json/check: $(CHECK_DEPS)
2740         @$(MKDIR_P) encoding/json
2741         @$(CHECK)
2742 .PHONY: encoding/json/check
2743
2744 @go_include@ encoding/pem.lo.dep
2745 encoding/pem.lo.dep: $(go_encoding_pem_files)
2746         $(BUILDDEPS)
2747 encoding/pem.lo: $(go_encoding_pem_files)
2748         $(BUILDPACKAGE)
2749 encoding/pem/check: $(CHECK_DEPS)
2750         @$(MKDIR_P) encoding/pem
2751         @$(CHECK)
2752 .PHONY: encoding/pem/check
2753
2754 @go_include@ encoding/xml.lo.dep
2755 encoding/xml.lo.dep: $(go_encoding_xml_files)
2756         $(BUILDDEPS)
2757 encoding/xml.lo: $(go_encoding_xml_files)
2758         $(BUILDPACKAGE)
2759 encoding/xml/check: $(CHECK_DEPS)
2760         @$(MKDIR_P) encoding/xml
2761         @$(CHECK)
2762 .PHONY: encoding/xml/check
2763
2764 @go_include@ exp/ebnf.lo.dep
2765 exp/ebnf.lo.dep: $(go_exp_ebnf_files)
2766         $(BUILDDEPS)
2767 exp/ebnf.lo: $(go_exp_ebnf_files)
2768         $(BUILDPACKAGE)
2769 exp/ebnf/check: $(CHECK_DEPS)
2770         @$(MKDIR_P) exp/ebnf
2771         @$(CHECK)
2772 .PHONY: exp/ebnf/check
2773
2774 @go_include@ exp/norm.lo.dep
2775 exp/norm.lo.dep: $(go_exp_norm_files)
2776         $(BUILDDEPS)
2777 exp/norm.lo: $(go_exp_norm_files)
2778         $(BUILDPACKAGE)
2779 exp/norm/check: $(CHECK_DEPS)
2780         @$(MKDIR_P) exp/norm
2781         @$(CHECK)
2782 .PHONY: exp/norm/check
2783
2784 @go_include@ exp/spdy.lo.dep
2785 exp/spdy.lo.dep: $(go_exp_spdy_files)
2786         $(BUILDDEPS)
2787 exp/spdy.lo: $(go_exp_spdy_files)
2788         $(BUILDPACKAGE)
2789 exp/spdy/check: $(CHECK_DEPS)
2790         @$(MKDIR_P) exp/spdy
2791         @$(CHECK)
2792 .PHONY: exp/spdy/check
2793
2794 @go_include@ exp/sql.lo.dep
2795 exp/sql.lo.dep: $(go_exp_sql_files)
2796         $(BUILDDEPS)
2797 exp/sql.lo: $(go_exp_sql_files)
2798         $(BUILDPACKAGE)
2799 exp/sql/check: $(CHECK_DEPS)
2800         @$(MKDIR_P) exp/sql
2801         @$(CHECK)
2802 .PHONY: exp/sql/check
2803
2804 @go_include@ exp/ssh.lo.dep
2805 exp/ssh.lo.dep: $(go_exp_ssh_files)
2806         $(BUILDDEPS)
2807 exp/ssh.lo: $(go_exp_ssh_files)
2808         $(BUILDPACKAGE)
2809 exp/ssh/check: $(CHECK_DEPS)
2810         @$(MKDIR_P) exp/ssh
2811         @$(CHECK)
2812 .PHONY: exp/ssh/check
2813
2814 @go_include@ exp/terminal.lo.dep
2815 exp/terminal.lo.dep: $(go_exp_terminal_files)
2816         $(BUILDDEPS)
2817 exp/terminal.lo: $(go_exp_terminal_files)
2818         $(BUILDPACKAGE)
2819 exp/terminal/check: $(CHECK_DEPS)
2820         @$(MKDIR_P) exp/terminal
2821         @$(CHECK)
2822 .PHONY: exp/terminal/check
2823
2824 @go_include@ exp/types.lo.dep
2825 exp/types.lo.dep: $(go_exp_types_files)
2826         $(BUILDDEPS)
2827 exp/types.lo: $(go_exp_types_files)
2828         $(BUILDPACKAGE)
2829 exp/types/check: $(CHECK_DEPS)
2830         @$(MKDIR_P) exp/types
2831         @$(CHECK)
2832 .PHONY: exp/types/check
2833
2834 @go_include@ exp/inotify.lo.dep
2835 exp/inotify.lo.dep: $(go_exp_inotify_files)
2836         $(BUILDDEPS)
2837 exp/inotify.lo: $(go_exp_inotify_files)
2838         $(BUILDPACKAGE)
2839 exp/inotify/check: $(CHECK_DEPS)
2840         @$(MKDIR_P) exp/inotify
2841         @$(CHECK)
2842 .PHONY: exp/inotify/check
2843
2844 @go_include@ exp/sql/driver.lo.dep
2845 exp/sql/driver.lo.dep: $(go_exp_sql_driver_files)
2846         $(BUILDDEPS)
2847 exp/sql/driver.lo: $(go_exp_sql_driver_files)
2848         $(BUILDPACKAGE)
2849 exp/sql/driver/check: $(CHECK_DEPS)
2850         @$(MKDIR_P) exp/sql/driver
2851         @$(CHECK)
2852 .PHONY: exp/sql/driver/check
2853
2854 @go_include@ html/template.lo.dep
2855 html/template.lo.dep: $(go_html_template_files)
2856         $(BUILDDEPS)
2857 html/template.lo: $(go_html_template_files)
2858         $(BUILDPACKAGE)
2859 html/template/check: $(CHECK_DEPS)
2860         @$(MKDIR_P) html/template
2861         @$(CHECK)
2862 .PHONY: html/template/check
2863
2864 @go_include@ go/ast.lo.dep
2865 go/ast.lo.dep: $(go_go_ast_files)
2866         $(BUILDDEPS)
2867 go/ast.lo: $(go_go_ast_files)
2868         $(BUILDPACKAGE)
2869 go/ast/check: $(CHECK_DEPS)
2870         @$(MKDIR_P) go/ast
2871         @$(CHECK)
2872 .PHONY: go/ast/check
2873
2874 @go_include@ go/build.lo.dep
2875 go/build.lo.dep: $(go_go_build_files)
2876         $(BUILDDEPS)
2877 go/build.lo: $(go_go_build_files)
2878         $(BUILDPACKAGE)
2879 go/build/check: $(CHECK_DEPS)
2880         @$(MKDIR_P) go/build
2881         @$(CHECK)
2882 .PHONY: go/build/check
2883
2884 syslist.go: s-syslist; @true
2885 s-syslist: Makefile
2886         echo '// Generated automatically by make.' >syslist.go.tmp
2887         echo 'package build' >>syslist.go.tmp
2888         echo 'const goosList = "$(GOOS)"' >>syslist.go.tmp
2889         echo 'const goarchList = "$(GOARCH)"' >>syslist.go.tmp
2890         $(SHELL) $(srcdir)/../move-if-change syslist.go.tmp syslist.go
2891         $(STAMP) $@
2892
2893 @go_include@ go/doc.lo.dep
2894 go/doc.lo.dep: $(go_go_doc_files)
2895         $(BUILDDEPS)
2896 go/doc.lo: $(go_go_doc_files)
2897         $(BUILDPACKAGE)
2898 go/doc/check: $(CHECK_DEPS)
2899         @$(MKDIR_P) go/doc
2900         @$(CHECK)
2901 .PHONY: go/doc/check
2902
2903 @go_include@ go/parser.lo.dep
2904 go/parser.lo.dep: $(go_go_parser_files)
2905         $(BUILDDEPS)
2906 go/parser.lo: $(go_go_parser_files)
2907         $(BUILDPACKAGE)
2908 go/parser/check: $(CHECK_DEPS)
2909         @$(MKDIR_P) go/parser
2910         @$(CHECK)
2911 .PHONY: go/parser/check
2912
2913 @go_include@ go/printer.lo.dep
2914 go/printer.lo.dep: $(go_go_printer_files)
2915         $(BUILDDEPS)
2916 go/printer.lo: $(go_go_printer_files)
2917         $(BUILDPACKAGE)
2918 go/printer/check: $(CHECK_DEPS)
2919         @$(MKDIR_P) go/printer
2920         @$(CHECK)
2921 .PHONY: go/printer/check
2922
2923 @go_include@ go/scanner.lo.dep
2924 go/scanner.lo.dep: $(go_go_scanner_files)
2925         $(BUILDDEPS)
2926 go/scanner.lo: $(go_go_scanner_files)
2927         $(BUILDPACKAGE)
2928 go/scanner/check: $(CHECK_DEPS)
2929         @$(MKDIR_P) go/scanner
2930         @$(CHECK)
2931 .PHONY: go/scanner/check
2932
2933 @go_include@ go/token.lo.dep
2934 go/token.lo.dep: $(go_go_token_files)
2935         $(BUILDDEPS)
2936 go/token.lo: $(go_go_token_files)
2937         $(BUILDPACKAGE)
2938 go/token/check: $(CHECK_DEPS)
2939         @$(MKDIR_P) go/token
2940         @$(CHECK)
2941 .PHONY: go/token/check
2942
2943 @go_include@ hash/adler32.lo.dep
2944 hash/adler32.lo.dep: $(go_hash_adler32_files)
2945         $(BUILDDEPS)
2946 hash/adler32.lo: $(go_hash_adler32_files)
2947         $(BUILDPACKAGE)
2948 hash/adler32/check: $(CHECK_DEPS)
2949         @$(MKDIR_P) hash/adler32
2950         @$(CHECK)
2951 .PHONY: hash/adler32/check
2952
2953 @go_include@ hash/crc32.lo.dep
2954 hash/crc32.lo.dep: $(go_hash_crc32_files)
2955         $(BUILDDEPS)
2956 hash/crc32.lo: $(go_hash_crc32_files)
2957         $(BUILDPACKAGE)
2958 hash/crc32/check: $(CHECK_DEPS)
2959         @$(MKDIR_P) hash/crc32
2960         @$(CHECK)
2961 .PHONY: hash/crc32/check
2962
2963 @go_include@ hash/crc64.lo.dep
2964 hash/crc64.lo.dep: $(go_hash_crc64_files)
2965         $(BUILDDEPS)
2966 hash/crc64.lo: $(go_hash_crc64_files)
2967         $(BUILDPACKAGE)
2968 hash/crc64/check: $(CHECK_DEPS)
2969         @$(MKDIR_P) hash/crc64
2970         @$(CHECK)
2971 .PHONY: hash/crc64/check
2972
2973 @go_include@ hash/fnv.lo.dep
2974 hash/fnv.lo.dep: $(go_hash_fnv_files)
2975         $(BUILDDEPS)
2976 hash/fnv.lo: $(go_hash_fnv_files)
2977         $(BUILDPACKAGE)
2978 hash/fnv/check: $(CHECK_DEPS)
2979         @$(MKDIR_P) hash/fnv
2980         @$(CHECK)
2981 .PHONY: hash/fnv/check
2982
2983 @go_include@ image/bmp.lo.dep
2984 image/bmp.lo.dep: $(go_image_bmp_files)
2985         $(BUILDDEPS)
2986 image/bmp.lo: $(go_image_bmp_files)
2987         $(BUILDPACKAGE)
2988 image/bmp/check: $(CHECK_DEPS)
2989         @$(MKDIR_P) image/bmp
2990         @$(CHECK)
2991 .PHONY: image/bmp/check
2992
2993 @go_include@ image/color.lo.dep
2994 image/color.lo.dep: $(go_image_color_files)
2995         $(BUILDDEPS)
2996 image/color.lo: $(go_image_color_files)
2997         $(BUILDPACKAGE)
2998 image/color/check: $(CHECK_DEPS)
2999         @$(MKDIR_P) image/color
3000         @$(CHECK)
3001 .PHONY: image/color/check
3002
3003 @go_include@ image/draw.lo.dep
3004 image/draw.lo.dep: $(go_image_draw_files)
3005         $(BUILDDEPS)
3006 image/draw.lo: $(go_image_draw_files)
3007         $(BUILDPACKAGE)
3008 image/draw/check: $(CHECK_DEPS)
3009         @$(MKDIR_P) image/draw
3010         @$(CHECK)
3011 .PHONY: image/draw/check
3012
3013 @go_include@ image/gif.lo.dep
3014 image/gif.lo.dep: $(go_image_gif_files)
3015         $(BUILDDEPS)
3016 image/gif.lo: $(go_image_gif_files)
3017         $(BUILDPACKAGE)
3018 image/gif/check: $(CHECK_DEPS)
3019         @$(MKDIR_P) image/gif
3020         @$(CHECK)
3021 .PHONY: image/gif/check
3022
3023 @go_include@ image/jpeg.lo.dep
3024 image/jpeg.lo.dep: $(go_image_jpeg_files)
3025         $(BUILDDEPS)
3026 image/jpeg.lo: $(go_image_jpeg_files)
3027         $(BUILDPACKAGE)
3028 image/jpeg/check: $(CHECK_DEPS)
3029         @$(MKDIR_P) image/jpeg
3030         @$(CHECK)
3031 .PHONY: image/jpeg/check
3032
3033 @go_include@ image/png.lo.dep
3034 image/png.lo.dep: $(go_image_png_files)
3035         $(BUILDDEPS)
3036 image/png.lo: $(go_image_png_files)
3037         $(BUILDPACKAGE)
3038 image/png/check: $(CHECK_DEPS)
3039         @$(MKDIR_P) image/png
3040         @$(CHECK)
3041 .PHONY: image/png/check
3042
3043 @go_include@ image/tiff.lo.dep
3044 image/tiff.lo.dep: $(go_image_tiff_files)
3045         $(BUILDDEPS)
3046 image/tiff.lo: $(go_image_tiff_files)
3047         $(BUILDPACKAGE)
3048 image/tiff/check: $(CHECK_DEPS)
3049         @$(MKDIR_P) image/tiff
3050         @$(CHECK)
3051 .PHONY: image/tiff/check
3052
3053 @go_include@ image/ycbcr.lo.dep
3054 image/ycbcr.lo.dep: $(go_image_ycbcr_files)
3055         $(BUILDDEPS)
3056 image/ycbcr.lo: $(go_image_ycbcr_files)
3057         $(BUILDPACKAGE)
3058 image/ycbcr/check: $(CHECK_DEPS)
3059         @$(MKDIR_P) image/ycbcr
3060         @$(CHECK)
3061 .PHONY: image/ycbcr/check
3062
3063 @go_include@ index/suffixarray.lo.dep
3064 index/suffixarray.lo.dep: $(go_index_suffixarray_files)
3065         $(BUILDDEPS)
3066 index/suffixarray.lo: $(go_index_suffixarray_files)
3067         $(BUILDPACKAGE)
3068 index/suffixarray/check: $(CHECK_DEPS)
3069         @$(MKDIR_P) index/suffixarray
3070         @$(CHECK)
3071 .PHONY: index/suffixarray/check
3072
3073 @go_include@ io/ioutil.lo.dep
3074 io/ioutil.lo.dep: $(go_io_ioutil_files)
3075         $(BUILDDEPS)
3076 io/ioutil.lo: $(go_io_ioutil_files)
3077         $(BUILDPACKAGE)
3078 io/ioutil/check: $(CHECK_DEPS)
3079         @$(MKDIR_P) io/ioutil
3080         @$(CHECK)
3081 .PHONY: io/ioutil/check
3082
3083 @go_include@ log/syslog.lo.dep
3084 log/syslog.lo.dep: $(go_log_syslog_files)
3085         $(BUILDDEPS)
3086 log/syslog.lo: $(go_log_syslog_files)
3087         $(BUILDPACKAGE)
3088 log/syslog/syslog_c.lo: $(go_syslog_c_files) log/syslog.lo
3089         $(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
3090 log/syslog/check: $(CHECK_DEPS)
3091         @$(MKDIR_P) log/syslog
3092         @$(CHECK)
3093 .PHONY: log/syslog/check
3094
3095 @go_include@ math/big.lo.dep
3096 math/big.lo.dep: $(go_math_big_files)
3097         $(BUILDDEPS)
3098 math/big.lo: $(go_math_big_files)
3099         $(BUILDPACKAGE)
3100 math/big/check: $(CHECK_DEPS)
3101         @$(MKDIR_P) math/big
3102         @$(CHECK)
3103 .PHONY: math/big/check
3104
3105 @go_include@ math/cmplx.lo.dep
3106 math/cmplx.lo.dep: $(go_math_cmplx_files)
3107         $(BUILDDEPS)
3108 math/cmplx.lo: $(go_math_cmplx_files)
3109         $(BUILDPACKAGE)
3110 math/cmplx/check: $(CHECK_DEPS)
3111         @$(MKDIR_P) math/cmplx
3112         @$(CHECK)
3113 .PHONY: math/cmplx/check
3114
3115 @go_include@ math/rand.lo.dep
3116 math/rand.lo.dep: $(go_math_rand_files)
3117         $(BUILDDEPS)
3118 math/rand.lo: $(go_math_rand_files)
3119         $(BUILDPACKAGE)
3120 math/rand/check: $(CHECK_DEPS)
3121         @$(MKDIR_P) math/rand
3122         @$(CHECK)
3123 .PHONY: math/rand/check
3124
3125 @go_include@ mime/multipart.lo.dep
3126 mime/multipart.lo.dep: $(go_mime_multipart_files)
3127         $(BUILDDEPS)
3128 mime/multipart.lo: $(go_mime_multipart_files)
3129         $(BUILDPACKAGE)
3130 mime/multipart/check: $(CHECK_DEPS)
3131         @$(MKDIR_P) mime/multipart
3132         @$(CHECK)
3133 .PHONY: mime/multipart/check
3134
3135 @go_include@ net/dict.lo.dep
3136 net/dict.lo.dep: $(go_net_dict_files)
3137         $(BUILDDEPS)
3138 net/dict.lo: $(go_net_dict_files)
3139         $(BUILDPACKAGE)
3140
3141 @go_include@ net/http.lo.dep
3142 net/http.lo.dep: $(go_net_http_files)
3143         $(BUILDDEPS)
3144 net/http.lo: $(go_net_http_files)
3145         $(BUILDPACKAGE)
3146 net/http/check: $(CHECK_DEPS)
3147         @$(MKDIR_P) net/http
3148         @$(CHECK)
3149 .PHONY: net/http/check
3150
3151 @go_include@ net/mail.lo.dep
3152 net/mail.lo.dep: $(go_net_mail_files)
3153         $(BUILDDEPS)
3154 net/mail.lo: $(go_net_mail_files)
3155         $(BUILDPACKAGE)
3156 net/mail/check: $(CHECK_DEPS)
3157         @$(MKDIR_P) net/mail
3158         @$(CHECK)
3159 .PHONY: net/mail/check
3160
3161 @go_include@ net/rpc.lo.dep
3162 net/rpc.lo.dep: $(go_net_rpc_files)
3163         $(BUILDDEPS)
3164 net/rpc.lo: $(go_net_rpc_files)
3165         $(BUILDPACKAGE)
3166 net/rpc/check: $(CHECK_DEPS)
3167         @$(MKDIR_P) net/rpc
3168         @$(CHECK)
3169 .PHONY: net/rpc/check
3170
3171 @go_include@ net/smtp.lo.dep
3172 net/smtp.lo.dep: $(go_net_smtp_files)
3173         $(BUILDDEPS)
3174 net/smtp.lo: $(go_net_smtp_files)
3175         $(BUILDPACKAGE)
3176 net/smtp/check: $(CHECK_DEPS)
3177         @$(MKDIR_P) net/smtp
3178         @$(CHECK)
3179 .PHONY: net/smtp/check
3180
3181 @go_include@ net/url.lo.dep
3182 net/url.lo.dep: $(go_net_url_files)
3183         $(BUILDDEPS)
3184 net/url.lo: $(go_net_url_files)
3185         $(BUILDPACKAGE)
3186 net/url/check: $(CHECK_DEPS)
3187         @$(MKDIR_P) net/url
3188         @$(CHECK)
3189 .PHONY: net/url/check
3190
3191 @go_include@ net/textproto.lo.dep
3192 net/textproto.lo.dep: $(go_net_textproto_files)
3193         $(BUILDDEPS)
3194 net/textproto.lo: $(go_net_textproto_files)
3195         $(BUILDPACKAGE)
3196 net/textproto/check: $(CHECK_DEPS)
3197         @$(MKDIR_P) net/textproto
3198         @$(CHECK)
3199 .PHONY: net/textproto/check
3200
3201 @go_include@ net/http/cgi.lo.dep
3202 net/http/cgi.lo.dep: $(go_net_http_cgi_files)
3203         $(BUILDDEPS)
3204 net/http/cgi.lo: $(go_net_http_cgi_files)
3205         $(BUILDPACKAGE)
3206 net/http/cgi/check: $(CHECK_DEPS)
3207         @$(MKDIR_P) net/http/cgi
3208         @$(CHECK)
3209 .PHONY: net/http/cgi/check
3210
3211 @go_include@ net/http/fcgi.lo.dep
3212 net/http/fcgi.lo.dep: $(go_net_http_fcgi_files)
3213         $(BUILDDEPS)
3214 net/http/fcgi.lo: $(go_net_http_fcgi_files)
3215         $(BUILDPACKAGE)
3216 net/http/fcgi/check: $(CHECK_DEPS)
3217         @$(MKDIR_P) net/http/fcgi
3218         @$(CHECK)
3219 .PHONY: net/http/fcgi/check
3220
3221 @go_include@ net/http/httptest.lo.dep
3222 net/http/httptest.lo.dep: $(go_net_http_httptest_files)
3223         $(BUILDDEPS)
3224 net/http/httptest.lo: $(go_net_http_httptest_files)
3225         $(BUILDPACKAGE)
3226 net/http/httptest/check: $(check_deps)
3227         @$(MKDIR_P) net/http/httptest
3228         @$(CHECK)
3229 .PHONY: net/http/httptest/check
3230
3231 @go_include@ net/http/httputil.lo.dep
3232 net/http/httputil.lo.dep: $(go_net_http_httputil_files)
3233         $(BUILDDEPS)
3234 net/http/httputil.lo: $(go_net_http_httputil_files)
3235         $(BUILDPACKAGE)
3236 net/http/httputil/check: $(check_deps)
3237         @$(MKDIR_P) net/http/httputil
3238         @$(CHECK)
3239 .PHONY: net/http/httputil/check
3240
3241 @go_include@ net/http/pprof.lo.dep
3242 net/http/pprof.lo.dep: $(go_net_http_pprof_files)
3243         $(BUILDDEPS)
3244 net/http/pprof.lo: $(go_net_http_pprof_files)
3245         $(BUILDPACKAGE)
3246 net/http/pprof/check: $(CHECK_DEPS)
3247         @$(MKDIR_P) net/http/pprof
3248         @$(CHECK)
3249 .PHONY: net/http/pprof/check
3250
3251 @go_include@ net/rpc/jsonrpc.lo.dep
3252 net/rpc/jsonrpc.lo.dep: $(go_net_rpc_jsonrpc_files)
3253         $(BUILDDEPS)
3254 net/rpc/jsonrpc.lo: $(go_net_rpc_jsonrpc_files)
3255         $(BUILDPACKAGE)
3256 net/rpc/jsonrpc/check: $(CHECK_DEPS)
3257         @$(MKDIR_P) net/rpc/jsonrpc
3258         @$(CHECK)
3259 .PHONY: net/rpc/jsonrpc/check
3260
3261 @go_include@ old/netchan.lo.dep
3262 old/netchan.lo.dep: $(go_old_netchan_files)
3263         $(BUILDDEPS)
3264 old/netchan.lo: $(go_old_netchan_files)
3265         $(BUILDPACKAGE)
3266 old/netchan/check: $(CHECK_DEPS)
3267         @$(MKDIR_P) old/netchan
3268         @$(CHECK)
3269 .PHONY: old/netchan/check
3270
3271 @go_include@ old/regexp.lo.dep
3272 old/regexp.lo.dep: $(go_old_regexp_files)
3273         $(BUILDDEPS)
3274 old/regexp.lo: $(go_old_regexp_files)
3275         $(BUILDPACKAGE)
3276 old/regexp/check: $(CHECK_DEPS)
3277         @$(MKDIR_P) old/regexp
3278         @$(CHECK)
3279 .PHONY: old/regexp/check
3280
3281 @go_include@ old/template.lo.dep
3282 old/template.lo.dep: $(go_old_template_files)
3283         $(BUILDDEPS)
3284 old/template.lo: $(go_old_template_files)
3285         $(BUILDPACKAGE)
3286 old/template/check: $(CHECK_DEPS)
3287         @$(MKDIR_P) old/template
3288         @$(CHECK)
3289 .PHONY: old/template/check
3290
3291 @go_include@ os/exec.lo.dep
3292 os/exec.lo.dep: $(go_os_exec_files)
3293         $(BUILDDEPS)
3294 os/exec.lo: $(go_os_exec_files)
3295         $(BUILDPACKAGE)
3296 os/exec/check: $(CHECK_DEPS)
3297         @$(MKDIR_P) os/exec
3298         @$(CHECK)
3299 .PHONY: os/exec/check
3300
3301 @go_include@ os/user.lo.dep
3302 os/user.lo.dep: $(go_os_user_files)
3303         $(BUILDDEPS)
3304 os/user.lo: $(go_os_user_files)
3305         $(BUILDPACKAGE)
3306 os/user/check: $(CHECK_DEPS)
3307         @$(MKDIR_P) os/user
3308         @$(CHECK)
3309 .PHONY: os/user/check
3310
3311 @go_include@ os/signal.lo.dep
3312 os/signal.lo.dep: $(go_os_signal_files)
3313         $(BUILDDEPS)
3314 os/signal.lo: $(go_os_signal_files)
3315         $(BUILDPACKAGE)
3316 os/signal/check: $(CHECK_DEPS)
3317         @$(MKDIR_P) os/signal
3318         @$(CHECK)
3319 .PHONY: os/signal/check
3320
3321 @go_include@ path/filepath.lo.dep
3322 path/filepath.lo.dep: $(go_path_filepath_files)
3323         $(BUILDDEPS)
3324 path/filepath.lo: $(go_path_filepath_files)
3325         $(BUILDPACKAGE)
3326 path/filepath/check: $(CHECK_DEPS)
3327         @$(MKDIR_P) path/filepath
3328         @$(CHECK)
3329 .PHONY: path/filepath/check
3330
3331 @go_include@ regexp/syntax.lo.dep
3332 regexp/syntax.lo.dep: $(go_regexp_syntax_files)
3333         $(BUILDDEPS)
3334 regexp/syntax.lo: $(go_regexp_syntax_files)
3335         $(BUILDPACKAGE)
3336 regexp/syntax/check: $(CHECK_DEPS)
3337         @$(MKDIR_P) regexp/syntax
3338         @$(CHECK)
3339 .PHONY: regexp/syntax/check
3340
3341 @go_include@ runtime/debug.lo.dep
3342 runtime/debug.lo.dep: $(go_runtime_debug_files)
3343         $(BUILDDEPS)
3344 runtime/debug.lo: $(go_runtime_debug_files)
3345         $(BUILDPACKAGE)
3346 runtime/debug/check: $(CHECK_DEPS)
3347         @$(MKDIR_P) runtime/debug
3348         @$(CHECK)
3349 .PHONY: runtime/debug/check
3350
3351 @go_include@ runtime/pprof.lo.dep
3352 runtime/pprof.lo.dep: $(go_runtime_pprof_files)
3353         $(BUILDDEPS)
3354 runtime/pprof.lo: $(go_runtime_pprof_files)
3355         $(BUILDPACKAGE)
3356 runtime/pprof/check: $(CHECK_DEPS)
3357         @$(MKDIR_P) runtime/pprof
3358         @$(CHECK)
3359 .PHONY: runtime/pprof/check
3360
3361 @go_include@ sync/atomic.lo.dep
3362 sync/atomic.lo.dep: $(go_sync_atomic_files)
3363         $(BUILDDEPS)
3364 sync/atomic.lo: $(go_sync_atomic_files)
3365         $(BUILDPACKAGE)
3366 sync/atomic_c.lo: $(go_sync_atomic_c_files) sync/atomic.lo
3367         $(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
3368 sync/atomic/check: $(CHECK_DEPS)
3369         @$(MKDIR_P) sync/atomic
3370         @$(CHECK)
3371 .PHONY: sync/atomic/check
3372
3373 @go_include@ text/tabwriter.lo.dep
3374 text/tabwriter.lo.dep: $(go_text_tabwriter_files)
3375         $(BUILDDEPS)
3376 text/tabwriter.lo: $(go_text_tabwriter_files)
3377         $(BUILDPACKAGE)
3378 text/tabwriter/check: $(CHECK_DEPS)
3379         @$(MKDIR_P) text/tabwriter
3380         @$(CHECK)
3381 .PHONY: text/tabwriter/check
3382
3383 @go_include@ text/template.lo.dep
3384 text/template.lo.dep: $(go_text_template_files)
3385         $(BUILDDEPS)
3386 text/template.lo: $(go_text_template_files)
3387         $(BUILDPACKAGE)
3388 text/template/check: $(CHECK_DEPS)
3389         @$(CHECK)
3390 .PHONY: text/template/check
3391
3392 @go_include@ text/template/parse.lo.dep
3393 text/template/parse.lo.dep: $(go_text_template_parse_files)
3394         $(BUILDDEPS)
3395 text/template/parse.lo: $(go_text_template_parse_files)
3396         $(BUILDPACKAGE)
3397 text/template/parse/check: $(CHECK_DEPS)
3398         @$(MKDIR_P) text/template/parse
3399         @$(CHECK)
3400 .PHONY: text/template/parse/check
3401
3402 @go_include@ testing/iotest.lo.dep
3403 testing/iotest.lo.dep: $(go_testing_iotest_files)
3404         $(BUILDDEPS)
3405 testing/iotest.lo: $(go_testing_iotest_files)
3406         $(BUILDPACKAGE)
3407 testing/iotest/check: $(CHECK_DEPS)
3408         @$(MKDIR_P) testing/iotest
3409         @$(CHECK)
3410 .PHONY: testing/iotest/check
3411
3412 @go_include@ testing/quick.lo.dep
3413 testing/quick.lo.dep: $(go_testing_quick_files)
3414         $(BUILDDEPS)
3415 testing/quick.lo: $(go_testing_quick_files)
3416         $(BUILDPACKAGE)
3417 testing/quick/check: $(CHECK_DEPS)
3418         @$(MKDIR_P) testing/quick
3419         @$(CHECK)
3420 .PHONY: testing/quick/check
3421
3422 @go_include@ testing/script.lo.dep
3423 testing/script.lo.dep: $(go_testing_script_files)
3424         $(BUILDDEPS)
3425 testing/script.lo: $(go_testing_script_files)
3426         $(BUILDPACKAGE)
3427 testing/script/check: $(CHECK_DEPS)
3428         @$(MKDIR_P) testing/script
3429         @$(CHECK)
3430 .PHONY: testing/script/check
3431
3432 @go_include@ unicode/utf16.lo.dep
3433 unicode/utf16.lo.dep: $(go_unicode_utf16_files)
3434         $(BUILDDEPS)
3435 unicode/utf16.lo: $(go_unicode_utf16_files)
3436         $(BUILDPACKAGE)
3437 unicode/utf16/check: $(CHECK_DEPS)
3438         @$(MKDIR_P) unicode/utf16
3439         @$(CHECK)
3440 .PHONY: unicode/utf16/check
3441
3442 @go_include@ unicode/utf8.lo.dep
3443 unicode/utf8.lo.dep: $(go_unicode_utf8_files)
3444         $(BUILDDEPS)
3445 unicode/utf8.lo: $(go_unicode_utf8_files)
3446         $(BUILDPACKAGE)
3447 unicode/utf8/check: $(CHECK_DEPS)
3448         @$(MKDIR_P) unicode/utf8
3449         @$(CHECK)
3450 .PHONY: unicode/utf8/check
3451
3452 @go_include@ syscall/syscall.lo.dep
3453 syscall/syscall.lo.dep: $(go_syscall_files)
3454         $(BUILDDEPS)
3455 syscall/syscall.lo: $(go_syscall_files)
3456         $(BUILDPACKAGE)
3457 syscall/errno.lo: go/syscall/errno.c
3458         $(LTCOMPILE) -c -o $@ $<
3459 syscall/wait.lo: go/syscall/wait.c
3460         $(LTCOMPILE) -c -o $@ $<
3461
3462 # How to build a .gox file from a .lo file.
3463 BUILDGOX = \
3464         f=`echo $< | sed -e 's/.lo$$/.o/'`; \
3465         $(OBJCOPY) -j .go_export $$f $@.tmp && mv -f $@.tmp $@
3466
3467 bufio.gox: bufio/bufio.lo
3468         $(BUILDGOX)
3469 bytes.gox: bytes/bytes.lo
3470         $(BUILDGOX)
3471 crypto.gox: crypto/crypto.lo
3472         $(BUILDGOX)
3473 errors.gox: errors/errors.lo
3474         $(BUILDGOX)
3475 expvar.gox: expvar/expvar.lo
3476         $(BUILDGOX)
3477 flag.gox: flag/flag.lo
3478         $(BUILDGOX)
3479 fmt.gox: fmt/fmt.lo
3480         $(BUILDGOX)
3481 hash.gox: hash/hash.lo
3482         $(BUILDGOX)
3483 html.gox: html/html.lo
3484         $(BUILDGOX)
3485 image.gox: image/image.lo
3486         $(BUILDGOX)
3487 io.gox: io/io.lo
3488         $(BUILDGOX)
3489 log.gox: log/log.lo
3490         $(BUILDGOX)
3491 math.gox: math/math.lo
3492         $(BUILDGOX)
3493 mime.gox: mime/mime.lo
3494         $(BUILDGOX)
3495 net.gox: net/net.lo
3496         $(BUILDGOX)
3497 os.gox: os/os.lo
3498         $(BUILDGOX)
3499 patch.gox: patch/patch.lo
3500         $(BUILDGOX)
3501 path.gox: path/path.lo
3502         $(BUILDGOX)
3503 reflect.gox: reflect/reflect.lo
3504         $(BUILDGOX)
3505 regexp.gox: regexp/regexp.lo
3506         $(BUILDGOX)
3507 runtime.gox: runtime/runtime.lo
3508         $(BUILDGOX)
3509 sort.gox: sort/sort.lo
3510         $(BUILDGOX)
3511 strconv.gox: strconv/strconv.lo
3512         $(BUILDGOX)
3513 strings.gox: strings/strings.lo
3514         $(BUILDGOX)
3515 sync.gox: sync/sync.lo
3516         $(BUILDGOX)
3517 syscall.gox: syscall/syscall.lo
3518         $(BUILDGOX)
3519 testing.gox: testing/testing.lo
3520         $(BUILDGOX)
3521 time.gox: time/time.lo
3522         $(BUILDGOX)
3523 unicode.gox: unicode/unicode.lo
3524         $(BUILDGOX)
3525 websocket.gox: websocket/websocket.lo
3526         $(BUILDGOX)
3527
3528 archive/tar.gox: archive/tar.lo
3529         $(BUILDGOX)
3530 archive/zip.gox: archive/zip.lo
3531         $(BUILDGOX)
3532
3533 compress/bzip2.gox: compress/bzip2.lo
3534         $(BUILDGOX)
3535 compress/flate.gox: compress/flate.lo
3536         $(BUILDGOX)
3537 compress/gzip.gox: compress/gzip.lo
3538         $(BUILDGOX)
3539 compress/lzw.gox: compress/lzw.lo
3540         $(BUILDGOX)
3541 compress/zlib.gox: compress/zlib.lo
3542         $(BUILDGOX)
3543
3544 container/heap.gox: container/heap.lo
3545         $(BUILDGOX)
3546 container/list.gox: container/list.lo
3547         $(BUILDGOX)
3548 container/ring.gox: container/ring.lo
3549         $(BUILDGOX)
3550
3551 crypto/aes.gox: crypto/aes.lo
3552         $(BUILDGOX)
3553 crypto/bcrypt.gox: crypto/bcrypt.lo
3554         $(BUILDGOX)
3555 crypto/blowfish.gox: crypto/blowfish.lo
3556         $(BUILDGOX)
3557 crypto/cast5.gox: crypto/cast5.lo
3558         $(BUILDGOX)
3559 crypto/cipher.gox: crypto/cipher.lo
3560         $(BUILDGOX)
3561 crypto/des.gox: crypto/des.lo
3562         $(BUILDGOX)
3563 crypto/dsa.gox: crypto/dsa.lo
3564         $(BUILDGOX)
3565 crypto/ecdsa.gox: crypto/ecdsa.lo       
3566         $(BUILDGOX)
3567 crypto/elliptic.gox: crypto/elliptic.lo
3568         $(BUILDGOX)
3569 crypto/hmac.gox: crypto/hmac.lo
3570         $(BUILDGOX)
3571 crypto/md4.gox: crypto/md4.lo
3572         $(BUILDGOX)
3573 crypto/md5.gox: crypto/md5.lo
3574         $(BUILDGOX)
3575 crypto/ocsp.gox: crypto/ocsp.lo
3576         $(BUILDGOX)
3577 crypto/openpgp.gox: crypto/openpgp.lo
3578         $(BUILDGOX)
3579 crypto/rand.gox: crypto/rand.lo
3580         $(BUILDGOX)
3581 crypto/rc4.gox: crypto/rc4.lo
3582         $(BUILDGOX)
3583 crypto/ripemd160.gox: crypto/ripemd160.lo
3584         $(BUILDGOX)
3585 crypto/rsa.gox: crypto/rsa.lo
3586         $(BUILDGOX)
3587 crypto/sha1.gox: crypto/sha1.lo
3588         $(BUILDGOX)
3589 crypto/sha256.gox: crypto/sha256.lo
3590         $(BUILDGOX)
3591 crypto/sha512.gox: crypto/sha512.lo
3592         $(BUILDGOX)
3593 crypto/subtle.gox: crypto/subtle.lo
3594         $(BUILDGOX)
3595 crypto/tls.gox: crypto/tls.lo
3596         $(BUILDGOX)
3597 crypto/twofish.gox: crypto/twofish.lo
3598         $(BUILDGOX)
3599 crypto/x509.gox: crypto/x509.lo
3600         $(BUILDGOX)
3601 crypto/xtea.gox: crypto/xtea.lo
3602         $(BUILDGOX)
3603
3604 crypto/openpgp/armor.gox: crypto/openpgp/armor.lo
3605         $(BUILDGOX)
3606 crypto/openpgp/elgamal.gox: crypto/openpgp/elgamal.lo
3607         $(BUILDGOX)
3608 crypto/openpgp/error.gox: crypto/openpgp/error.lo
3609         $(BUILDGOX)
3610 crypto/openpgp/packet.gox: crypto/openpgp/packet.lo
3611         $(BUILDGOX)
3612 crypto/openpgp/s2k.gox: crypto/openpgp/s2k.lo
3613         $(BUILDGOX)
3614
3615 crypto/x509/pkix.gox: crypto/x509/pkix.lo
3616         $(BUILDGOX)
3617
3618 debug/dwarf.gox: debug/dwarf.lo
3619         $(BUILDGOX)
3620 debug/elf.gox: debug/elf.lo
3621         $(BUILDGOX)
3622 debug/gosym.gox: debug/gosym.lo
3623         $(BUILDGOX)
3624 debug/macho.gox: debug/macho.lo
3625         $(BUILDGOX)
3626 debug/pe.gox: debug/pe.lo
3627         $(BUILDGOX)
3628
3629 encoding/ascii85.gox: encoding/ascii85.lo
3630         $(BUILDGOX)
3631 encoding/asn1.gox: encoding/asn1.lo
3632         $(BUILDGOX)
3633 encoding/base32.gox: encoding/base32.lo
3634         $(BUILDGOX)
3635 encoding/base64.gox: encoding/base64.lo
3636         $(BUILDGOX)
3637 encoding/binary.gox: encoding/binary.lo
3638         $(BUILDGOX)
3639 encoding/csv.gox: encoding/csv.lo
3640         $(BUILDGOX)
3641 encoding/git85.gox: encoding/git85.lo
3642         $(BUILDGOX)
3643 encoding/gob.gox: encoding/gob.lo
3644         $(BUILDGOX)
3645 encoding/hex.gox: encoding/hex.lo
3646         $(BUILDGOX)
3647 encoding/json.gox: encoding/json.lo
3648         $(BUILDGOX)
3649 encoding/pem.gox: encoding/pem.lo
3650         $(BUILDGOX)
3651 encoding/xml.gox: encoding/xml.lo
3652         $(BUILDGOX)
3653
3654 exp/ebnf.gox: exp/ebnf.lo
3655         $(BUILDGOX)
3656 exp/inotify.gox: exp/inotify.lo
3657         $(BUILDGOX)
3658 exp/norm.gox: exp/norm.lo
3659         $(BUILDGOX)
3660 exp/spdy.gox: exp/spdy.lo
3661         $(BUILDGOX)
3662 exp/sql.gox: exp/sql.lo
3663         $(BUILDGOX)
3664 exp/ssh.gox: exp/ssh.lo
3665         $(BUILDGOX)
3666 exp/terminal.gox: exp/terminal.lo
3667         $(BUILDGOX)
3668 exp/types.gox: exp/types.lo
3669         $(BUILDGOX)
3670
3671 exp/sql/driver.gox: exp/sql/driver.lo
3672         $(BUILDGOX)
3673
3674 html/template.gox: html/template.lo
3675         $(BUILDGOX)
3676
3677 go/ast.gox: go/ast.lo
3678         $(BUILDGOX)
3679 go/build.gox: go/build.lo
3680         $(BUILDGOX)
3681 go/doc.gox: go/doc.lo
3682         $(BUILDGOX)
3683 go/parser.gox: go/parser.lo
3684         $(BUILDGOX)
3685 go/printer.gox: go/printer.lo
3686         $(BUILDGOX)
3687 go/scanner.gox: go/scanner.lo
3688         $(BUILDGOX)
3689 go/token.gox: go/token.lo
3690         $(BUILDGOX)
3691
3692 hash/adler32.gox: hash/adler32.lo
3693         $(BUILDGOX)
3694 hash/crc32.gox: hash/crc32.lo
3695         $(BUILDGOX)
3696 hash/crc64.gox: hash/crc64.lo
3697         $(BUILDGOX)
3698 hash/fnv.gox: hash/fnv.lo
3699         $(BUILDGOX)
3700
3701 image/bmp.gox: image/bmp.lo
3702         $(BUILDGOX)
3703 image/color.gox: image/color.lo
3704         $(BUILDGOX)
3705 image/draw.gox: image/draw.lo
3706         $(BUILDGOX)
3707 image/gif.gox: image/gif.lo
3708         $(BUILDGOX)
3709 image/jpeg.gox: image/jpeg.lo
3710         $(BUILDGOX)
3711 image/png.gox: image/png.lo
3712         $(BUILDGOX)
3713 image/tiff.gox: image/tiff.lo
3714         $(BUILDGOX)
3715 image/ycbcr.gox: image/ycbcr.lo
3716         $(BUILDGOX)
3717
3718 index/suffixarray.gox: index/suffixarray.lo
3719         $(BUILDGOX)
3720
3721 io/ioutil.gox: io/ioutil.lo
3722         $(BUILDGOX)
3723
3724 log/syslog.gox: log/syslog.lo
3725         $(BUILDGOX)
3726
3727 math/big.gox: math/big.lo
3728         $(BUILDGOX)
3729 math/cmplx.gox: math/cmplx.lo
3730         $(BUILDGOX)
3731 math/rand.gox: math/rand.lo
3732         $(BUILDGOX)
3733
3734 mime/multipart.gox: mime/multipart.lo
3735         $(BUILDGOX)
3736
3737 net/dict.gox: net/dict.lo
3738         $(BUILDGOX)
3739 net/http.gox: net/http.lo
3740         $(BUILDGOX)
3741 net/mail.gox: net/mail.lo
3742         $(BUILDGOX)
3743 net/rpc.gox: net/rpc.lo
3744         $(BUILDGOX)
3745 net/smtp.gox: net/smtp.lo
3746         $(BUILDGOX)
3747 net/textproto.gox: net/textproto.lo
3748         $(BUILDGOX)
3749 net/url.gox: net/url.lo
3750         $(BUILDGOX)
3751
3752 net/http/cgi.gox: net/http/cgi.lo
3753         $(BUILDGOX)
3754 net/http/fcgi.gox: net/http/fcgi.lo
3755         $(BUILDGOX)
3756 net/http/httptest.gox: net/http/httptest.lo
3757         $(BUILDGOX)
3758 net/http/httputil.gox: net/http/httputil.lo
3759         $(BUILDGOX)
3760 net/http/pprof.gox: net/http/pprof.lo
3761         $(BUILDGOX)
3762
3763 net/rpc/jsonrpc.gox: net/rpc/jsonrpc.lo
3764         $(BUILDGOX)
3765
3766 old/netchan.gox: old/netchan.lo
3767         $(BUILDGOX)
3768 old/regexp.gox: old/regexp.lo
3769         $(BUILDGOX)
3770 old/template.gox: old/template.lo
3771         $(BUILDGOX)
3772
3773 os/exec.gox: os/exec.lo
3774         $(BUILDGOX)
3775 os/user.gox: os/user.lo
3776         $(BUILDGOX)
3777 os/signal.gox: os/signal.lo
3778         $(BUILDGOX)
3779
3780 path/filepath.gox: path/filepath.lo
3781         $(BUILDGOX)
3782
3783 regexp/syntax.gox: regexp/syntax.lo
3784         $(BUILDGOX)
3785
3786 runtime/debug.gox: runtime/debug.lo
3787         $(BUILDGOX)
3788 runtime/pprof.gox: runtime/pprof.lo
3789         $(BUILDGOX)
3790
3791 sync/atomic.gox: sync/atomic.lo
3792         $(BUILDGOX)
3793
3794 text/scanner.gox: text/scanner.lo
3795         $(BUILDGOX)
3796 text/tabwriter.gox: text/tabwriter.lo
3797         $(BUILDGOX)
3798 text/template.gox: text/template.lo
3799         $(BUILDGOX)
3800 text/template/parse.gox: text/template/parse.lo
3801         $(BUILDGOX)
3802
3803 testing/iotest.gox: testing/iotest.lo
3804         $(BUILDGOX)
3805 testing/quick.gox: testing/quick.lo
3806         $(BUILDGOX)
3807 testing/script.gox: testing/script.lo
3808         $(BUILDGOX)
3809
3810 unicode/utf16.gox: unicode/utf16.lo
3811         $(BUILDGOX)
3812 unicode/utf8.gox: unicode/utf8.lo
3813         $(BUILDGOX)
3814
3815 if LIBGO_IS_LINUX
3816 # exp_inotify_check = exp/inotify/check
3817 exp_inotify_check =
3818 else
3819 exp_inotify_check =
3820 endif
3821
3822 TEST_PACKAGES = \
3823         bufio/check \
3824         bytes/check \
3825         errors/check \
3826         expvar/check \
3827         flag/check \
3828         fmt/check \
3829         html/check \
3830         image/check \
3831         io/check \
3832         log/check \
3833         math/check \
3834         mime/check \
3835         net/check \
3836         os/check \
3837         patch/check \
3838         path/check \
3839         reflect/check \
3840         regexp/check \
3841         runtime/check \
3842         sort/check \
3843         strconv/check \
3844         strings/check \
3845         sync/check \
3846         time/check \
3847         unicode/check \
3848         websocket/check \
3849         archive/tar/check \
3850         archive/zip/check \
3851         compress/bzip2/check \
3852         compress/flate/check \
3853         compress/gzip/check \
3854         compress/lzw/check \
3855         compress/zlib/check \
3856         container/heap/check \
3857         container/list/check \
3858         container/ring/check \
3859         crypto/aes/check \
3860         crypto/bcrypt/check \
3861         crypto/blowfish/check \
3862         crypto/cast5/check \
3863         crypto/cipher/check \
3864         crypto/des/check \
3865         crypto/dsa/check \
3866         crypto/ecdsa/check \
3867         crypto/elliptic/check \
3868         crypto/hmac/check \
3869         crypto/md4/check \
3870         crypto/md5/check \
3871         crypto/ocsp/check \
3872         crypto/openpgp/check \
3873         crypto/rand/check \
3874         crypto/rc4/check \
3875         crypto/ripemd160/check \
3876         crypto/rsa/check \
3877         crypto/sha1/check \
3878         crypto/sha256/check \
3879         crypto/sha512/check \
3880         crypto/subtle/check \
3881         crypto/tls/check \
3882         crypto/twofish/check \
3883         crypto/x509/check \
3884         crypto/xtea/check \
3885         crypto/openpgp/armor/check \
3886         crypto/openpgp/elgamal/check \
3887         crypto/openpgp/packet/check \
3888         crypto/openpgp/s2k/check \
3889         debug/dwarf/check \
3890         debug/elf/check \
3891         debug/macho/check \
3892         debug/pe/check \
3893         encoding/ascii85/check \
3894         encoding/asn1/check \
3895         encoding/base32/check \
3896         encoding/base64/check \
3897         encoding/binary/check \
3898         encoding/csv/check \
3899         encoding/git85/check \
3900         encoding/gob/check \
3901         encoding/hex/check \
3902         encoding/json/check \
3903         encoding/pem/check \
3904         encoding/xml/check \
3905         exp/ebnf/check \
3906         $(exp_inotify_check) \
3907         exp/norm/check \
3908         exp/spdy/check \
3909         exp/sql/check \
3910         exp/ssh/check \
3911         exp/terminal/check \
3912         html/template/check \
3913         go/ast/check \
3914         $(go_build_check_omitted_since_it_calls_6g) \
3915         go/doc/check \
3916         go/parser/check \
3917         go/printer/check \
3918         go/scanner/check \
3919         go/token/check \
3920         $(go_types_check_omitted_since_it_calls_6g) \
3921         hash/adler32/check \
3922         hash/crc32/check \
3923         hash/crc64/check \
3924         hash/fnv/check \
3925         image/draw/check \
3926         image/jpeg/check \
3927         image/png/check \
3928         image/tiff/check \
3929         image/ycbcr/check \
3930         index/suffixarray/check \
3931         io/ioutil/check \
3932         log/syslog/check \
3933         math/big/check \
3934         math/cmplx/check \
3935         math/rand/check \
3936         mime/multipart/check \
3937         net/http/check \
3938         net/http/cgi/check \
3939         net/http/fcgi/check \
3940         net/http/httputil/check \
3941         net/mail/check \
3942         net/rpc/check \
3943         net/smtp/check \
3944         net/textproto/check \
3945         net/url/check \
3946         net/rpc/jsonrpc/check \
3947         old/netchan/check \
3948         old/regexp/check \
3949         old/template/check \
3950         os/exec/check \
3951         os/user/check \
3952         os/signal/check \
3953         path/filepath/check \
3954         regexp/syntax/check \
3955         sync/atomic/check \
3956         text/scanner/check \
3957         text/tabwriter/check \
3958         text/template/check \
3959         text/template/parse/check \
3960         testing/quick/check \
3961         testing/script/check \
3962         unicode/utf16/check \
3963         unicode/utf8/check
3964
3965 check: check-tail
3966 check-recursive: check-head
3967
3968 check-head:
3969         @echo "Test Run By $${USER} on `date`" > libgo.head
3970         @echo "Native configuration is $(host_triplet)" >> libgo.head
3971         @echo >> libgo.head
3972         @echo "         === libgo tests ===" >> libgo.head
3973         @echo >> libgo.head
3974
3975 check-tail: check-recursive check-multi
3976         @lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
3977         for dir in . $(MULTIDIRS); do \
3978           mv ../$${dir}/$${lib}/libgo.sum ../$${dir}/$${lib}/libgo.sum.sep; \
3979           mv ../$${dir}/$${lib}/libgo.log ../$${dir}/$${lib}/libgo.log.sep; \
3980         done; \
3981         mv libgo.head libgo.sum; \
3982         cp libgo.sum libgo.log; \
3983         echo "Schedule of variations:" >> libgo.sum; \
3984         for dir in . $(MULTIDIRS); do \
3985           multidir=../$${dir}/$${lib}; \
3986           multivar=`cat $${multidir}/libgo.var`; \
3987           echo "    $${multivar}" >> libgo.sum; \
3988         done; \
3989         echo >> libgo.sum; \
3990         pass=0; fail=0; untested=0; \
3991         for dir in . $(MULTIDIRS); do \
3992           multidir=../$${dir}/$${lib}; \
3993           multivar=`cat $${multidir}/libgo.var`; \
3994           echo "Running target $${multivar}" >> libgo.sum; \
3995           echo "Running $(srcdir)/libgo.exp ..." >> libgo.sum; \
3996           cat $${multidir}/libgo.sum.sep >> libgo.sum; \
3997           cat $${multidir}/libgo.log.sep >> libgo.log; \
3998           if test -n "${MULTIDIRS}"; then \
3999             echo "              === libgo Summary for $${multivar} ===" >> libgo.sum; \
4000             echo >> libgo.sum; \
4001           fi; \
4002           p=`grep -c PASS $${multidir}/libgo.sum.sep`; \
4003           pass=`expr $$pass + $$p`; \
4004           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
4005             echo "# of expected passes          $$p" >> libgo.sum; \
4006           fi; \
4007           p=`grep -c FAIL $${multidir}/libgo.sum.sep`; \
4008           fail=`expr $$fail + $$p`; \
4009           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
4010             echo "# of unexpected failures      $$p" >> libgo.sum; \
4011           fi; \
4012           p=`grep -c UNTESTED $${multidir}/libgo.sum.sep`; \
4013           untested=`expr $$untested + $$p`; \
4014           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
4015             echo "# of untested testcases               $$p" >> libgo.sum; \
4016           fi; \
4017         done; \
4018         echo >> libgo.sum; \
4019         echo "          === libgo Summary ===" >> libgo.sum; \
4020         echo >> libgo.sum; \
4021         if test "$$pass" -ne "0"; then \
4022           echo "# of expected passes            $$pass" >> libgo.sum; \
4023         fi; \
4024         if test "$$fail" -ne "0"; then \
4025           echo "# of unexpected failures        $$fail" >> libgo.sum; \
4026         fi; \
4027         if test "$$untested" -ne "0"; then \
4028           echo "# of untested testcases         $$untested" >> libgo.sum; \
4029         fi; \
4030         echo `echo $(GOC) | sed -e 's/ .*//'`  `$(GOC) -v 2>&1 | grep " version" | sed -n -e 's/.* \(version.*$$\)/\1/p'` >> libgo.sum; \
4031         echo >> libgo.log; \
4032         echo "runtest completed at `date`" >> libgo.log; \
4033         if test "$$fail" -ne "0"; then \
4034           status=1; \
4035         else \
4036           status=0; \
4037         fi; \
4038         exit $$status
4039
4040 check-am:
4041         @rm -f libgo.sum libgo.log libgo.tail
4042         @multivar="unix"; \
4043         [ -z "$(MULTIFLAGS)" ] || multivar="$${multivar}/$(MULTIFLAGS)"; \
4044         echo "$${multivar}" > libgo.var
4045         @for f in $(TEST_PACKAGES); do \
4046            rm -f $$f-testsum $$f-testlog; \
4047          done
4048         -@$(MAKE) -k $(TEST_PACKAGES)
4049         @for f in $(TEST_PACKAGES); do \
4050           if test -f $$f-testsum; then \
4051             cat $$f-testsum >> libgo.sum; \
4052           fi; \
4053           if test -f $$f-testlog; then \
4054             cat $$f-testlog >> libgo.log; \
4055           fi; \
4056         done
4057
4058 check-multi:
4059         $(MULTIDO) $(AM_MAKEFLAGS) DO=check-am multi-do # $(MAKE)
4060
4061 MOSTLYCLEAN_FILES = libgo.head libgo.sum.sep libgo.log.sep
4062
4063 mostlyclean-local:
4064         find . -name '*.lo' -print | xargs $(LIBTOOL) --mode=clean rm -f
4065         find . -name '*.$(OBJEXT)' -print | xargs rm -f
4066         find . -name '*-testsum' -print | xargs rm -f
4067         find . -name '*-testlog' -print | xargs rm -f
4068
4069 CLEANFILES = *.go *.gox goc2c *.c s-version libgo.sum libgo.log
4070
4071 clean-local:
4072         find . -name '*.la' -print | xargs $(LIBTOOL) --mode=clean rm -f
4073         find . -name '*.a' -print | xargs rm -f