/c-family
[official-gcc.git] / libgo / Makefile.am
blob14ee9bec2113b9a85b2da90235e258967bc54ef5
1 # Makefile.am -- Go library Makefile.
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.
7 # Process this file with autoreconf to produce Makefile.in.
9 # Go support.
10 SUFFIXES = .c .go .gox .o .obj .lo .a
12 if LIBGO_IS_RTEMS
13 subdirs = testsuite
14 endif
16 SUBDIRS = ${subdirs}
18 gcc_version := $(shell $(GOC) -dumpversion)
20 MAINT_CHARSET = latin1
22 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
23 PWD_COMMAND = $${PWDCMD-pwd}
24 STAMP = echo timestamp >
26 toolexecdir = $(glibgo_toolexecdir)
27 toolexeclibdir = $(glibgo_toolexeclibdir)
28 toolexeclibgodir = $(nover_glibgo_toolexeclibdir)/go/$(gcc_version)/$(target_alias)
29 libexecsubdir = $(libexecdir)/gcc/$(target_alias)/$(gcc_version)
31 LIBFFI = @LIBFFI@
32 LIBFFIINCS = @LIBFFIINCS@
34 LIBATOMIC = @LIBATOMIC@
36 WARN_CFLAGS = $(WARN_FLAGS) $(WERROR)
38 # -I/-D flags to pass when compiling.
39 AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS)
41 ACLOCAL_AMFLAGS = -I ./config -I ../config
43 AM_CFLAGS = -fexceptions -fnon-call-exceptions -fplan9-extensions \
44         $(SPLIT_STACK) $(WARN_CFLAGS) \
45         $(STRINGOPS_FLAG) $(HWCAP_CFLAGS) $(OSCFLAGS) \
46         -I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \
47         -I $(MULTIBUILDTOP)../../gcc/include
49 if USING_SPLIT_STACK
50 AM_LDFLAGS = -XCClinker $(SPLIT_STACK)
51 endif
53 # Multilib support.
54 MAKEOVERRIDES=
56 # Work around what appears to be a GNU make  handling MAKEFLAGS
57 # values defined in terms of make variables, as is the case for CC and
58 # friends when we are called from the top level Makefile.
59 AM_MAKEFLAGS = \
60         "AR_FLAGS=$(AR_FLAGS)" \
61         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
62         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
63         "CFLAGS=$(CFLAGS)" \
64         "CXXFLAGS=$(CXXFLAGS)" \
65         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
66         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
67         "GOC_FOR_TARGET=$(GOC_FOR_TARGET)" \
68         "GOC=$(GOC)" \
69         "GOCFLAGS=$(GOCFLAGS)" \
70         "INSTALL=$(INSTALL)" \
71         "INSTALL_DATA=$(INSTALL_DATA)" \
72         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
73         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
74         "LDFLAGS=$(LDFLAGS)" \
75         "LIBCFLAGS=$(LIBCFLAGS)" \
76         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
77         "MAKE=$(MAKE)" \
78         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
79         "PICFLAG=$(PICFLAG)" \
80         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
81         "SHELL=$(SHELL)" \
82         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
83         "exec_prefix=$(exec_prefix)" \
84         "infodir=$(infodir)" \
85         "libdir=$(libdir)" \
86         "includedir=$(includedir)" \
87         "prefix=$(prefix)" \
88         "tooldir=$(tooldir)" \
89         "gxx_include_dir=$(gxx_include_dir)" \
90         "AR=$(AR)" \
91         "AS=$(AS)" \
92         "LD=$(LD)" \
93         "RANLIB=$(RANLIB)" \
94         "NM=$(NM)" \
95         "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
96         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
97         "DESTDIR=$(DESTDIR)" \
98         "WERROR=$(WERROR)"
100 # Subdir rules rely on $(FLAGS_TO_PASS)
101 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
103 if GOC_IS_LLGO
104 toolexeclib_LTLIBRARIES = libgo-llgo.la
105 toolexeclib_LIBRARIES = libgobegin-llgo.a
106 else
107 toolexeclib_LTLIBRARIES = libgo.la
108 toolexeclib_LIBRARIES = libgobegin.a libgolibbegin.a
109 endif
111 toolexeclibgo_DATA = \
112         bufio.gox \
113         bytes.gox \
114         context.gox \
115         crypto.gox \
116         encoding.gox \
117         errors.gox \
118         expvar.gox \
119         flag.gox \
120         fmt.gox \
121         hash.gox \
122         html.gox \
123         image.gox \
124         io.gox \
125         log.gox \
126         math.gox \
127         mime.gox \
128         net.gox \
129         os.gox \
130         path.gox \
131         reflect.gox \
132         regexp.gox \
133         runtime.gox \
134         sort.gox \
135         strconv.gox \
136         strings.gox \
137         sync.gox \
138         syscall.gox \
139         testing.gox \
140         time.gox \
141         unicode.gox
143 toolexeclibgoarchivedir = $(toolexeclibgodir)/archive
145 toolexeclibgoarchive_DATA = \
146         archive/tar.gox \
147         archive/zip.gox
149 toolexeclibgocompressdir = $(toolexeclibgodir)/compress
151 toolexeclibgocompress_DATA = \
152         compress/bzip2.gox \
153         compress/flate.gox \
154         compress/gzip.gox \
155         compress/lzw.gox \
156         compress/zlib.gox
158 toolexeclibgocontainerdir = $(toolexeclibgodir)/container
160 toolexeclibgocontainer_DATA = \
161         container/heap.gox \
162         container/list.gox \
163         container/ring.gox
165 toolexeclibgocryptodir = $(toolexeclibgodir)/crypto
167 toolexeclibgocrypto_DATA = \
168         crypto/aes.gox \
169         crypto/cipher.gox \
170         crypto/des.gox \
171         crypto/dsa.gox \
172         crypto/ecdsa.gox \
173         crypto/elliptic.gox \
174         crypto/hmac.gox \
175         crypto/md5.gox \
176         crypto/rand.gox \
177         crypto/rc4.gox \
178         crypto/rsa.gox \
179         crypto/sha1.gox \
180         crypto/sha256.gox \
181         crypto/sha512.gox \
182         crypto/subtle.gox \
183         crypto/tls.gox \
184         crypto/x509.gox
186 toolexeclibgocryptox509dir = $(toolexeclibgocryptodir)/x509
188 toolexeclibgocryptox509_DATA = \
189         crypto/x509/pkix.gox
191 toolexeclibgodatabasedir = $(toolexeclibgodir)/database
193 toolexeclibgodatabase_DATA = \
194         database/sql.gox
196 toolexeclibgodatabasesqldir = $(toolexeclibgodatabasedir)/sql
198 toolexeclibgodatabasesql_DATA = \
199         database/sql/driver.gox
201 toolexeclibgodebugdir = $(toolexeclibgodir)/debug
203 toolexeclibgodebug_DATA = \
204         debug/dwarf.gox \
205         debug/elf.gox \
206         debug/gosym.gox \
207         debug/macho.gox \
208         debug/pe.gox \
209         debug/plan9obj.gox
211 toolexeclibgoencodingdir = $(toolexeclibgodir)/encoding
213 toolexeclibgoencoding_DATA = \
214         encoding/ascii85.gox \
215         encoding/asn1.gox \
216         encoding/base32.gox \
217         encoding/base64.gox \
218         encoding/binary.gox \
219         encoding/csv.gox \
220         encoding/gob.gox \
221         encoding/hex.gox \
222         encoding/json.gox \
223         encoding/pem.gox \
224         encoding/xml.gox
226 toolexeclibgoexpdir = $(toolexeclibgodir)/exp
228 toolexeclibgoexp_DATA = \
229         exp/proxy.gox \
230         exp/terminal.gox
232 toolexeclibgogodir = $(toolexeclibgodir)/go
234 toolexeclibgogo_DATA = \
235         go/ast.gox \
236         go/build.gox \
237         go/constant.gox \
238         go/doc.gox \
239         go/format.gox \
240         go/importer.gox \
241         go/parser.gox \
242         go/printer.gox \
243         go/scanner.gox \
244         go/token.gox \
245         go/types.gox
247 toolexeclibgohashdir = $(toolexeclibgodir)/hash
249 toolexeclibgohash_DATA = \
250         hash/adler32.gox \
251         hash/crc32.gox \
252         hash/crc64.gox \
253         hash/fnv.gox
255 toolexeclibgohtmldir = $(toolexeclibgodir)/html
257 toolexeclibgohtml_DATA = \
258         html/template.gox
260 toolexeclibgoimagedir = $(toolexeclibgodir)/image
262 toolexeclibgoimage_DATA = \
263         image/color.gox \
264         image/draw.gox \
265         image/gif.gox \
266         image/jpeg.gox \
267         image/png.gox
269 toolexeclibgoimagecolordir = $(toolexeclibgoimagedir)/color
271 toolexeclibgoimagecolor_DATA = \
272         image/color/palette.gox
274 toolexeclibgoindexdir = $(toolexeclibgodir)/index
276 toolexeclibgoindex_DATA = \
277         index/suffixarray.gox
279 toolexeclibgoiodir = $(toolexeclibgodir)/io
281 toolexeclibgoio_DATA = \
282         io/ioutil.gox
284 toolexeclibgologdir = $(toolexeclibgodir)/log
286 toolexeclibgolog_DATA = \
287         log/syslog.gox
289 toolexeclibgomathdir = $(toolexeclibgodir)/math
291 toolexeclibgomath_DATA = \
292         math/big.gox \
293         math/cmplx.gox \
294         math/rand.gox
296 toolexeclibgomimedir = $(toolexeclibgodir)/mime
298 toolexeclibgomime_DATA = \
299         mime/multipart.gox \
300         mime/quotedprintable.gox
302 toolexeclibgonetdir = $(toolexeclibgodir)/net
304 toolexeclibgonet_DATA = \
305         net/http.gox \
306         net/mail.gox \
307         net/rpc.gox \
308         net/smtp.gox \
309         net/textproto.gox \
310         net/url.gox
312 toolexeclibgonethttpdir = $(toolexeclibgonetdir)/http
314 toolexeclibgonethttp_DATA = \
315         net/http/cgi.gox \
316         net/http/cookiejar.gox \
317         net/http/fcgi.gox \
318         net/http/httptest.gox \
319         net/http/httptrace.gox \
320         net/http/httputil.gox \
321         net/http/pprof.gox
323 toolexeclibgonetrpcdir = $(toolexeclibgonetdir)/rpc
325 toolexeclibgonetrpc_DATA = \
326         net/rpc/jsonrpc.gox
328 toolexeclibgoosdir = $(toolexeclibgodir)/os
330 toolexeclibgoos_DATA = \
331         os/exec.gox \
332         os/signal.gox \
333         os/user.gox
335 toolexeclibgopathdir = $(toolexeclibgodir)/path
337 toolexeclibgopath_DATA = \
338         path/filepath.gox
340 toolexeclibgoregexpdir = $(toolexeclibgodir)/regexp
342 toolexeclibgoregexp_DATA = \
343         regexp/syntax.gox
345 toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime
347 toolexeclibgoruntime_DATA = \
348         runtime/debug.gox \
349         runtime/pprof.gox \
350         runtime/trace.gox
352 toolexeclibgosyncdir = $(toolexeclibgodir)/sync
354 toolexeclibgosync_DATA = \
355         sync/atomic.gox
357 toolexeclibgotestingdir = $(toolexeclibgodir)/testing
359 toolexeclibgotesting_DATA = \
360         testing/iotest.gox \
361         testing/quick.gox
363 toolexeclibgotextdir = $(toolexeclibgodir)/text
365 toolexeclibgotext_DATA = \
366         text/scanner.gox \
367         text/tabwriter.gox \
368         text/template.gox
370 toolexeclibgotexttemplatedir = $(toolexeclibgotextdir)/template
372 toolexeclibgotexttemplate_DATA = \
373         text/template/parse.gox
375 toolexeclibgounicodedir = $(toolexeclibgodir)/unicode
377 toolexeclibgounicode_DATA = \
378         unicode/utf16.gox \
379         unicode/utf8.gox
381 if HAVE_SYS_MMAN_H
382 runtime_mem_file = runtime/mem.c
383 else
384 runtime_mem_file = runtime/mem_posix_memalign.c
385 endif
387 if LIBGO_IS_RTEMS
388 rtems_task_variable_add_file = runtime/rtems-task-variable-add.c
389 else
390 rtems_task_variable_add_file =
391 endif
393 if LIBGO_IS_LINUX
394 runtime_thread_files = runtime/thread-linux.c
395 else
396 runtime_thread_files = runtime/thread-sema.c
397 endif
399 if LIBGO_IS_LINUX
400 runtime_getncpu_file = runtime/getncpu-linux.c
401 else
402 if LIBGO_IS_DARWIN
403 runtime_getncpu_file = runtime/getncpu-bsd.c
404 else
405 if LIBGO_IS_IRIX
406 runtime_getncpu_file = runtime/getncpu-irix.c
407 else
408 if LIBGO_IS_SOLARIS
409 runtime_getncpu_file = runtime/getncpu-solaris.c
410 else
411 if LIBGO_IS_FREEBSD
412 runtime_getncpu_file = runtime/getncpu-bsd.c
413 else
414 if LIBGO_IS_NETBSD
415 runtime_getncpu_file = runtime/getncpu-bsd.c
416 else
417 runtime_getncpu_file = runtime/getncpu-none.c
418 endif
419 endif
420 endif
421 endif
422 endif
423 endif
425 runtime_files = \
426         runtime/aeshash.c \
427         runtime/go-assert.c \
428         runtime/go-breakpoint.c \
429         runtime/go-caller.c \
430         runtime/go-callers.c \
431         runtime/go-cdiv.c \
432         runtime/go-cgo.c \
433         runtime/go-construct-map.c \
434         runtime/go-ffi.c \
435         runtime/go-fieldtrack.c \
436         runtime/go-matherr.c \
437         runtime/go-memclr.c \
438         runtime/go-memcmp.c \
439         runtime/go-memequal.c \
440         runtime/go-memmove.c \
441         runtime/go-nanotime.c \
442         runtime/go-now.c \
443         runtime/go-new.c \
444         runtime/go-nosys.c \
445         runtime/go-reflect-call.c \
446         runtime/go-runtime-error.c \
447         runtime/go-setenv.c \
448         runtime/go-signal.c \
449         runtime/go-strslice.c \
450         runtime/go-typedesc-equal.c \
451         runtime/go-unsafe-new.c \
452         runtime/go-unsafe-newarray.c \
453         runtime/go-unsafe-pointer.c \
454         runtime/go-unsetenv.c \
455         runtime/go-unwind.c \
456         runtime/go-varargs.c \
457         runtime/env_posix.c \
458         runtime/heapdump.c \
459         runtime/mcache.c \
460         runtime/mcentral.c \
461         $(runtime_mem_file) \
462         runtime/mfixalloc.c \
463         runtime/mgc0.c \
464         runtime/mheap.c \
465         runtime/msize.c \
466         runtime/panic.c \
467         runtime/parfor.c \
468         runtime/print.c \
469         runtime/proc.c \
470         runtime/runtime_c.c \
471         runtime/thread.c \
472         $(runtime_thread_files) \
473         runtime/yield.c \
474         $(rtems_task_variable_add_file) \
475         malloc.c \
476         $(runtime_getncpu_file)
478 goc2c.$(OBJEXT): runtime/goc2c.c
479         $(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) $<
481 goc2c: goc2c.$(OBJEXT)
482         $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $<
484 malloc.c: $(srcdir)/runtime/malloc.goc goc2c
485         ./goc2c $< > $@.tmp
486         mv -f $@.tmp $@
488 %.c: $(srcdir)/runtime/%.goc goc2c
489         ./goc2c $< > $@.tmp
490         mv -f $@.tmp $@
492 version.go: s-version; @true
493 s-version: Makefile
494         rm -f version.go.tmp
495         echo "package sys" > version.go.tmp
496         echo 'const DefaultGoroot = "$(prefix)"' >> version.go.tmp
497         echo 'const TheVersion = "'`cat $(srcdir)/VERSION | sed 1q`' '`$(GOC) --version | sed 1q`'"' >> version.go.tmp
498         echo 'const GOARCH = "'$(GOARCH)'"' >> version.go.tmp
499         echo 'const GOOS = "'$(GOOS)'"' >> version.go.tmp
500         echo 'const GccgoToolDir = "$(libexecsubdir)"' >> version.go.tmp
501         echo >> version.go.tmp
502         echo "type ArchFamilyType int" >> version.go.tmp
503         echo >> version.go.tmp
504         echo "const (" >> version.go.tmp
505         echo "  UNKNOWN ArchFamilyType = iota" >> version.go.tmp
506         for a in $(ALLGOARCHFAMILY); do \
507           echo "        $${a}" >> version.go.tmp; \
508         done
509         echo ")" >> version.go.tmp
510         echo >> version.go.tmp
511         for a in $(ALLGOARCH); do \
512           f=`echo $${a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`; \
513           n="$${f}`echo $${a} | sed -e 's/.//'`"; \
514           if test "$${a}" = "$(GOARCH)"; then \
515             echo "const Goarch$${n} = 1" >> version.go.tmp; \
516           else \
517             echo "const Goarch$${n} = 0" >> version.go.tmp; \
518           fi; \
519         done
520         echo >> version.go.tmp
521         echo "const (" >> version.go.tmp
522         echo "  ArchFamily = $(GOARCH_FAMILY)" >> version.go.tmp
523         echo "  BigEndian = $(GOARCH_BIGENDIAN)" >> version.go.tmp
524         echo "  CacheLineSize = $(GOARCH_CACHELINESIZE)" >> version.go.tmp
525         echo "  PhysPageSize = $(GOARCH_PHYSPAGESIZE)" >> version.go.tmp
526         echo "  PCQuantum = $(GOARCH_PCQUANTUM)" >> version.go.tmp
527         echo "  Int64Align = $(GOARCH_INT64ALIGN)" >> version.go.tmp
528         echo "  HugePageSize = $(GOARCH_HUGEPAGESIZE)" >> version.go.tmp
529         echo "  MinFrameSize = $(GOARCH_MINFRAMESIZE)" >> version.go.tmp
530         echo ")" >> version.go.tmp
531         echo >> version.go.tmp
532         for a in $(ALLGOOS); do \
533           f=`echo $${a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`; \
534           n="$${f}`echo $${a} | sed -e 's/.//'`"; \
535           if test "$${a}" = "$(GOOS)"; then \
536             echo "const Goos$${n} = 1" >> version.go.tmp; \
537           else \
538             echo "const Goos$${n} = 0" >> version.go.tmp; \
539           fi; \
540         done
541         echo >> version.go.tmp
542         echo "type Uintreg uintptr" >> version.go.tmp
543         $(SHELL) $(srcdir)/mvifdiff.sh version.go.tmp version.go
544         $(STAMP) $@
546 runtime_sysinfo.go: s-runtime_sysinfo; @true
547 s-runtime_sysinfo: $(srcdir)/mkrsysinfo.sh gen-sysinfo.go
548         $(SHELL) $(srcdir)/mkrsysinfo.sh
549         $(SHELL) $(srcdir)/mvifdiff.sh tmp-runtime_sysinfo.go runtime_sysinfo.go
550         $(STAMP) $@
552 sigtab.go: s-sigtab; @true
553 s-sigtab: $(srcdir)/mksigtab.sh gen-sysinfo.go
554         GOOS=$(GOOS) $(SHELL) $(srcdir)/mksigtab.sh > tmp-sigtab.go
555         $(SHELL) $(srcdir)/mvifdiff.sh tmp-sigtab.go sigtab.go
556         $(STAMP) $@
558 runtime.inc: s-runtime-inc; @true
559 s-runtime-inc: runtime.lo Makefile
560         rm -f runtime.inc.tmp2
561         grep -v "#define _" runtime.inc.tmp | grep -v "#define [cm][01234] " > runtime.inc.tmp2
562         for pattern in '_[GP][a-z]' _Max _Lock _Sig _Trace _MHeap _Num; do \
563           grep "#define $$pattern" runtime.inc.tmp >> runtime.inc.tmp2; \
564         done
565         $(SHELL) $(srcdir)/mvifdiff.sh runtime.inc.tmp2 runtime.inc
566         $(STAMP) $@
568 noinst_DATA = zstdpkglist.go
570 # Generate the list of go std packages that were included in libgo
571 zstdpkglist.go: s-zstdpkglist; @true
572 s-zstdpkglist: Makefile
573         rm -f zstdpkglist.go.tmp
574         echo 'package main' > zstdpkglist.go.tmp
575         echo "" >> zstdpkglist.go.tmp
576         echo 'var stdpkg = map[string]bool{' >> zstdpkglist.go.tmp
577         echo $(libgo_go_objs) 'unsafe.lo' 'runtime/cgo.lo' | sed 's/\.lo /\": true,\n/g' | grep -v _c | sed 's/\.lo/\": true,/' | sed 's/^/\t\"/' | sort -u >> zstdpkglist.go.tmp
578         echo '}' >> zstdpkglist.go.tmp
579         $(SHELL) $(srcdir)/mvifdiff.sh zstdpkglist.go.tmp zstdpkglist.go
580         $(STAMP) $@
582 if LIBGO_IS_LINUX
583 syscall_epoll_file = epoll.go
584 else
585 syscall_epoll_file =
586 endif
588 libcalls.go: s-libcalls; @true
589 s-libcalls: libcalls-list go/syscall/mksyscall.awk $(srcdir)/go/syscall/*.go
590         rm -f libcalls.go.tmp
591         $(AWK) -f $(srcdir)/go/syscall/mksyscall.awk `cat libcalls-list` > libcalls.go.tmp
592         $(SHELL) $(srcdir)/mvifdiff.sh libcalls.go.tmp libcalls.go
593         $(STAMP) $@
595 libcalls-list: s-libcalls-list; @true
596 s-libcalls-list: Makefile $(srcdir)/go/syscall/*.go
597         rm -f libcalls-list.tmp
598         $(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/syscall $(matchargs_syscall) > libcalls-list.tmp
599         $(SHELL) $(srcdir)/mvifdiff.sh libcalls-list.tmp libcalls-list
600         $(STAMP) $@
602 syscall_arch.go: s-syscall_arch; @true
603 s-syscall_arch: Makefile
604         rm -f syscall_arch.go.tmp
605         echo "package syscall" > syscall_arch.go.tmp
606         echo 'const ARCH = "'$(GOARCH)'"' >> syscall_arch.go.tmp
607         echo 'const OS = "'$(GOOS)'"' >> syscall_arch.go.tmp
608         $(SHELL) $(srcdir)/mvifdiff.sh syscall_arch.go.tmp syscall_arch.go
609         $(STAMP) $@
611 SYSINFO_FLAGS = \
612         $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
613         $(CPPFLAGS) $(OSCFLAGS) -O
615 gen-sysinfo.go: s-gen-sysinfo; @true
616 s-gen-sysinfo: $(srcdir)/sysinfo.c config.h
617         $(CC) $(SYSINFO_FLAGS) -fdump-go-spec=tmp-gen-sysinfo.go -std=gnu99 -S -o sysinfo.s $(srcdir)/sysinfo.c
618         rm -f sysinfo.s
619         $(SHELL) $(srcdir)/mvifdiff.sh tmp-gen-sysinfo.go gen-sysinfo.go
620         $(STAMP) $@
622 errno.i: s-errno; @true
623 s-errno:
624         echo '#include <errno.h>' | $(CC) $(SYSINFO_FLAGS) -x c - -E -dM > tmp-errno.i
625         $(SHELL) $(srcdir)/mvifdiff.sh tmp-errno.i errno.i
626         $(STAMP) $@
628 sysinfo.go: s-sysinfo; @true
629 s-sysinfo: $(srcdir)/mksysinfo.sh gen-sysinfo.go errno.i
630         $(SHELL) $(srcdir)/mksysinfo.sh
631         $(SHELL) $(srcdir)/mvifdiff.sh tmp-sysinfo.go sysinfo.go
632         $(STAMP) $@
634 # The epoll struct has an embedded union and is packed on x86_64,
635 # which is too complicated for mksysinfo.sh.  We find the offset of
636 # the only field we care about in configure.ac, and generate the
637 # struct here.
638 epoll.go: s-epoll; @true
639 s-epoll: Makefile
640         rm -f epoll.go.tmp
641         echo 'package syscall' > epoll.go.tmp
642         echo 'type EpollEvent struct {' >> epoll.go.tmp
643         echo '  Events uint32' >> epoll.go.tmp
644         case "$(SIZEOF_STRUCT_EPOLL_EVENT),$(STRUCT_EPOLL_EVENT_FD_OFFSET)" in \
645         0,0) echo 1>&2 "*** struct epoll_event data.fd offset unknown"; \
646            exit 1; ;; \
647         8,4) echo '     Fd int32' >> epoll.go.tmp; ;; \
648         12,4) echo '    Fd int32' >> epoll.go.tmp; \
649            echo '       Pad [4]byte' >> epoll.go.tmp; ;; \
650         12,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
651            echo '       Fd int32' >> epoll.go.tmp; ;; \
652         16,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
653            echo '       Fd int32' >> epoll.go.tmp; \
654            echo '       Pad2 [4]byte' >> epoll.go.tmp; ;; \
655         *) echo 1>&2 "*** struct epoll_event unsupported"; \
656            exit 1; ;; \
657         esac
658         echo '}' >> epoll.go.tmp
659         $(SHELL) $(srcdir)/mvifdiff.sh epoll.go.tmp epoll.go
660         $(STAMP) $@
662 if LIBGO_IS_LINUX
663 syscall_lib_clone_lo = syscall/clone_linux.lo
664 else
665 syscall_lib_clone_lo =
666 endif
668 PACKAGES = \
669         archive/tar \
670         archive/zip \
671         bufio \
672         bytes \
673         cmd/internal/browser \
674         compress/bzip2 \
675         compress/flate \
676         compress/gzip \
677         compress/lzw \
678         compress/zlib \
679         container/heap \
680         container/list \
681         container/ring \
682         context \
683         crypto \
684         crypto/aes \
685         crypto/cipher \
686         crypto/des \
687         crypto/dsa \
688         crypto/ecdsa \
689         crypto/elliptic \
690         crypto/hmac \
691         crypto/internal/cipherhw \
692         crypto/md5 \
693         crypto/rand \
694         crypto/rc4 \
695         crypto/rsa \
696         crypto/sha1 \
697         crypto/sha256 \
698         crypto/sha512 \
699         crypto/subtle \
700         crypto/tls \
701         crypto/x509 \
702         crypto/x509/pkix \
703         database/sql \
704         database/sql/driver \
705         debug/dwarf \
706         debug/elf \
707         debug/gosym \
708         debug/macho \
709         debug/pe \
710         debug/plan9obj \
711         encoding \
712         encoding/ascii85 \
713         encoding/asn1 \
714         encoding/base32 \
715         encoding/base64 \
716         encoding/binary \
717         encoding/csv \
718         encoding/gob \
719         encoding/hex \
720         encoding/json \
721         encoding/pem \
722         encoding/xml \
723         errors \
724         exp/proxy \
725         exp/terminal \
726         expvar \
727         flag \
728         fmt \
729         go/ast \
730         go/build \
731         go/constant \
732         go/doc \
733         go/format \
734         go/importer \
735         go/internal/gccgoimporter \
736         go/internal/gcimporter \
737         go/parser \
738         go/printer \
739         go/scanner \
740         go/token \
741         go/types \
742         golang_org/x/crypto/chacha20poly1305 \
743         golang_org/x/crypto/chacha20poly1305/internal/chacha20 \
744         golang_org/x/crypto/curve25519 \
745         golang_org/x/crypto/poly1305 \
746         golang_org/x/net/http2/hpack \
747         golang_org/x/net/idna \
748         golang_org/x/net/lex/httplex \
749         golang_org/x/text/transform \
750         golang_org/x/text/unicode/norm \
751         golang_org/x/text/width \
752         hash \
753         hash/adler32 \
754         hash/crc32 \
755         hash/crc64 \
756         hash/fnv \
757         html \
758         html/template \
759         image \
760         image/color \
761         image/color/palette \
762         image/draw \
763         image/gif \
764         image/internal/imageutil \
765         image/jpeg \
766         image/png \
767         index/suffixarray \
768         internal/nettrace \
769         internal/pprof/profile \
770         internal/race \
771         internal/singleflight \
772         internal/syscall/unix \
773         internal/testenv \
774         internal/trace \
775         io \
776         io/ioutil \
777         log \
778         log/syslog \
779         math \
780         math/big \
781         math/cmplx \
782         math/rand \
783         mime \
784         mime/multipart \
785         mime/quotedprintable \
786         net \
787         net/http \
788         net/http/cgi \
789         net/http/cookiejar \
790         net/http/fcgi \
791         net/http/httptest \
792         net/http/httptrace \
793         net/http/httputil \
794         net/http/internal \
795         net/http/pprof \
796         net/internal/socktest \
797         net/mail \
798         net/rpc \
799         net/rpc/jsonrpc \
800         net/smtp \
801         net/textproto \
802         net/url \
803         os \
804         os/exec \
805         os/signal \
806         os/user \
807         path \
808         path/filepath \
809         reflect \
810         regexp \
811         regexp/syntax \
812         runtime \
813         runtime/debug \
814         runtime/internal/atomic \
815         runtime/internal/sys \
816         runtime/pprof \
817         runtime/pprof/internal/protopprof \
818         runtime/trace \
819         sort \
820         strconv \
821         strings \
822         sync \
823         sync/atomic \
824         syscall \
825         testing \
826         testing/internal/testdeps \
827         testing/iotest \
828         testing/quick \
829         text/scanner \
830         text/tabwriter \
831         text/template \
832         text/template/parse \
833         time \
834         unicode \
835         unicode/utf16 \
836         unicode/utf8
838 libgo_go_objs = \
839         $(addsuffix .lo,$(PACKAGES)) \
840         bytes/index.lo \
841         reflect/makefunc_ffi_c.lo \
842         strings/index.lo \
843         $(syscall_lib_clone_lo) \
844         syscall/errno.lo \
845         syscall/signame.lo \
846         syscall/wait.lo \
847         $(golang_org_x_net_lif_lo) \
848         $(golang_org_x_net_route_lo) \
849         log/syslog/syslog_c.lo \
850         $(os_lib_inotify_lo) \
851         runtime/internal/atomic_c.lo \
852         sync/atomic_c.lo
854 libgo_ldflags = \
855         -version-info $(libtool_VERSION) $(PTHREAD_CFLAGS) $(AM_LDFLAGS)
857 libgo_libadd = \
858         $(libgo_go_objs) ../libbacktrace/libbacktrace.la \
859         $(LIBATOMIC) $(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS)
861 libgo_la_SOURCES = $(runtime_files)
862 libgo_la_LDFLAGS = $(libgo_ldflags)
863 libgo_la_LIBADD = $(libgo_libadd)
865 libgo_llgo_la_SOURCES = $(runtime_files)
866 libgo_llgo_la_LDFLAGS = $(libgo_ldflags)
867 libgo_llgo_la_LIBADD = $(libgo_libadd)
869 libgobegin_a_SOURCES = \
870         runtime/go-main.c
872 libgobegin_llgo_a_SOURCES = \
873         runtime/go-main.c
875 # Use -fPIC for libgobegin so that it can be put in a PIE.
876 libgobegin_a_CFLAGS = $(AM_CFLAGS) -fPIC
877 libgobegin_llgo_a_CFLAGS = $(AM_CFLAGS) -fPIC
879 libgolibbegin_a_SOURCES = \
880         runtime/go-libmain.c
882 libgolibbegin_a_CFLAGS = $(AM_CFLAGS) -fPIC
884 # Make sure runtime.inc is built before compiling any .c file.
885 $(libgo_la_OBJECTS): runtime.inc
886 $(libgo_llgo_la_OBJECTS): runtime.inc
887 $(libgobegin_a_OBJECTS): runtime.inc
888 $(libgobegin_llgo_a_OBJECTS): runtime.inc
889 $(libgolibbegin_a_OBJECTS): runtime.inc
891 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
893 GOCFLAGS = $(CFLAGS)
894 AM_GOCFLAGS = $(STRINGOPS_FLAG) $(GO_SPLIT_STACK)
895 GOCOMPILE = $(GOC) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_GOCFLAGS) $(GOCFLAGS)
897 LTGOCOMPILE = $(LIBTOOL) --tag GO --mode=compile $(GOC) $(INCLUDES) \
898         $(AM_GOCFLAGS) $(GOCFLAGS)
900 GOLINK = $(LIBTOOL) --tag GO --mode-link $(GOC) \
901         $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_GOCFLAGS) $(LTLDFLAGS) -o $@
903 # Build the dependencies for a Go package.
904 BUILDDEPS = \
905         $(MKDIR_P) $(@D); \
906         dir=`echo $@ | sed -e 's/.lo.dep$$//'`; \
907         files=`$(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/$$dir --extrafiles="$(extra_go_files_$(subst /,_,$(subst .lo.dep,,$@)))" $(matchargs_$(subst /,_,$(subst .lo.dep,,$@)))`; \
908         $(SHELL) $(srcdir)/godeps.sh `echo $@ | sed -e 's/.dep$$//'` $$files > $@.tmp; \
909         if ! cmp $@.tmp $@ >/dev/null 2>/dev/null; then \
910           rm -f `echo $@ | sed -e 's/\.dep$$//'`; \
911         fi; \
912         mv -f $@.tmp $@
914 # Build the .go files for a package, generating a .lo file.
915 BUILDPACKAGE = \
916         $(MKDIR_P) $(@D); \
917         files=`echo $^ | sed -e 's/[^ ]*\.gox//g' -e 's/[^ ]*\.dep//'`; \
918         $(LTGOCOMPILE) -I . -c -fgo-pkgpath=`echo $@ | sed -e 's/.lo$$//'` $($(subst -,_,$(subst .,_,$(subst /,_,$@)))_GOCFLAGS) -o $@ $$files
920 # How to build a .gox file from a .lo file.
921 BUILDGOX = \
922         f=`echo $< | sed -e 's/.lo$$/.o/'`; \
923         $(OBJCOPY) -j .go_export $$f $@.tmp; \
924         $(SHELL) $(srcdir)/mvifdiff.sh $@.tmp `echo $@ | sed -e 's/s-gox/gox/'`
926 GOTESTFLAGS =
927 GOBENCH = 
929 # Check a package.
930 CHECK = \
931         GC="$(GOC) $(GOCFLAGS) $($(subst /,_,$@)_GOCFLAGS) -L `${PWD_COMMAND}` -L `${PWD_COMMAND}`/.libs"; \
932         export GC; \
933         GOLIBS="$(MATH_LIBS) $(NET_LIBS) $(LIBS)"; \
934         export GOLIBS; \
935         RUNTESTFLAGS="$(RUNTESTFLAGS)"; \
936         export RUNTESTFLAGS; \
937         MAKE="$(MAKE)"; \
938         export MAKE; \
939         libgccdir=`${GOC} -print-libgcc-file-name | sed -e 's|/[^/]*$$||'`; \
940         LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
941         LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
942         export LD_LIBRARY_PATH; \
943         $(MKDIR_P) $(@D); \
944         rm -f $@-testsum $@-testlog; \
945         files=`$(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/$(@D) --extrafiles="$(extra_go_files_$(subst /,_,$(@D)))" $(matchargs_$(subst /,_,$(@D)))`; \
946         if test "$(USE_DEJAGNU)" = "yes"; then \
947           $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" --testname="$(@D)" $(GOTESTFLAGS); \
948         elif test "$(GOBENCH)" != ""; then \
949           $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" --bench="$(GOBENCH)" $(GOTESTFLAGS); \
950         else \
951           if $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" $(GOTESTFLAGS) >>$@-testlog 2>&1; then \
952             echo "PASS: $(@D)" >> $@-testlog; \
953             echo "PASS: $(@D)"; \
954             echo "PASS: $(@D)" > $@-testsum; \
955           else \
956             echo "FAIL: $(@D)" >> $@-testlog; \
957             cat $@-testlog; \
958             echo "FAIL: $(@D)" > $@-testsum; \
959             exit 1; \
960           fi; \
961         fi
963 # Build all packages before checking any.
964 CHECK_DEPS = \
965         $(toolexeclibgo_DATA) \
966         $(toolexeclibgoarchive_DATA) \
967         $(toolexeclibgocompress_DATA) \
968         $(toolexeclibgocontainer_DATA) \
969         $(toolexeclibgocrypto_DATA) \
970         $(toolexeclibgodebug_DATA) \
971         $(toolexeclibgoencoding_DATA) \
972         $(toolexeclibgoexp_DATA) \
973         $(toolexeclibgogo_DATA) \
974         $(toolexeclibgohash_DATA) \
975         $(toolexeclibgoimage_DATA) \
976         $(toolexeclibgoindex_DATA) \
977         $(toolexeclibgoio_DATA) \
978         $(toolexeclibgolog_DATA) \
979         $(toolexeclibgomath_DATA) \
980         $(toolexeclibgomime_DATA) \
981         $(toolexeclibgonet_DATA) \
982         $(toolexeclibgonethttp_DATA) \
983         $(toolexeclibgoos_DATA) \
984         $(toolexeclibgopath_DATA) \
985         $(toolexeclibgorpc_DATA) \
986         $(toolexeclibgoruntime_DATA) \
987         $(toolexeclibgosync_DATA) \
988         $(toolexeclibgotesting_DATA) \
989         $(toolexeclibgotext_DATA) \
990         $(toolexeclibgotexttemplate_DATA) \
991         $(toolexeclibgounicode_DATA)
993 if GOC_IS_LLGO
994 CHECK_DEPS += libgo-llgo.la libgobegin-llgo.a
995 else
996 CHECK_DEPS += libgo.la libgobegin.a
997 endif
999 # PACKAGE_template defines the rules for each package.
1000 # For example, for the package bufio, it produces:
1002 # @go_include@ bufio.lo.dep
1003 # bufio.lo.dep: $(srcdir)/go/bufio/*.go
1004 #       $(BUILDDEPS)
1005 # bufio.lo:
1006 #       $(BUILDPACKAGE)
1007 # bufio/check: $(CHECK_DEPS)
1008 #       @$(CHECK)
1009 # .PHONY: bufio/check
1011 # This is invoked with $(1) set to a package, which is a directory name,
1012 # such as "bufio" or "archive/tar".
1013 define PACKAGE_template
1014 @go_include@ $(1).lo.dep
1015 $(1).lo.dep: $(srcdir)/go/$(1)/*.go
1016         $$(BUILDDEPS)
1017 $(1).lo:
1018         $$(BUILDPACKAGE)
1019 $(1)/check: $$(CHECK_DEPS)
1020         @$$(CHECK)
1021 .PHONY: $(1)/check
1022 $(1).gox: $(1).s-gox; @true
1023 $(1).s-gox: $(1).lo
1024         $$(BUILDGOX)
1025         $$(STAMP) $$@
1026 endef
1028 # This line expands PACKAGE_template once for each package name listed
1029 # in $(PACKAGES).
1030 $(foreach package,$(PACKAGES),$(eval $(call PACKAGE_template,$(package))))
1032 # Pass -ffp-contract=off, or 386-specific options, when building the
1033 # math package.  MATH_FLAG is defined in configure.ac.
1034 math_lo_GOCFLAGS = $(MATH_FLAG)
1036 # Add the generated file runtime_sysinfo.go to the runtime package.
1037 extra_go_files_runtime = runtime_sysinfo.go sigtab.go
1038 runtime.lo.dep: $(extra_go_files_runtime)
1040 # Add generated files to the syscall package.
1041 extra_go_files_syscall = \
1042         libcalls.go \
1043         sysinfo.go \
1044         syscall_arch.go \
1045         $(syscall_epoll_file)
1046 syscall.lo.dep: $(extra_go_files_syscall)
1048 # Pass -fgo-compiling-runtime when compiling the runtime package.
1049 runtime_lo_GOCFLAGS = -fgo-c-header=runtime.inc.tmp -fgo-compiling-runtime
1050 runtime_check_GOCFLAGS = -fgo-compiling-runtime
1051 runtime_internal_atomic_lo_GOCFLAGS = -fgo-compiling-runtime
1052 runtime_internal_atomic_lo_check_GOCFLAGS = -fgo-compiling-runtime
1053 runtime_internal_sys_lo_GOCFLAGS = -fgo-compiling-runtime
1054 runtime_internal_sys_lo_check_GOCFLAGS = -fgo-compiling-runtime
1056 # If libffi is supported (the normal case) use the ffi build tag for
1057 # the runtime package.
1058 if USE_LIBFFI
1059 matchargs_runtime = --tag=libffi
1060 else
1061 matchargs_runtime =
1062 endif
1064 # At least for now, we need -static-libgo for this test, because
1065 # otherwise we can't get the line numbers.
1066 # Also use -fno-inline to get better results from the memory profiler.
1067 runtime_pprof_check_GOCFLAGS = -static-libgo -fno-inline
1069 extra_go_files_runtime_internal_sys = version.go
1070 runtime/internal/sys.lo.dep: $(extra_go_files_runtime_internal_sys)
1072 # FIXME: The following C files may as well move to the runtime
1073 # directory and be treated like other C files.
1075 # Use C code to speed up {bytes,strings}.IndexByte and friends.
1076 bytes/index.lo: go/bytes/indexbyte.c runtime.inc
1077         @$(MKDIR_P) bytes
1078         $(LTCOMPILE) -c -o $@ $(srcdir)/go/bytes/indexbyte.c
1079 strings/index.lo: go/strings/indexbyte.c runtime.inc
1080         @$(MKDIR_P) strings
1081         $(LTCOMPILE) -c -o $@ $(srcdir)/go/strings/indexbyte.c
1083 # Use a C function with a fixed number of arguments to call a C
1084 # varargs function.
1085 log/syslog/syslog_c.lo: go/log/syslog/syslog_c.c runtime.inc
1086         @$(MKDIR_P) log/syslog
1087         $(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
1089 # The interface to libffi from the reflect package is written in C.
1090 reflect/makefunc_ffi_c.lo: go/reflect/makefunc_ffi_c.c runtime.inc
1091         @$(MKDIR_P) reflect
1092         $(LTCOMPILE) -c -o $@ $(srcdir)/go/reflect/makefunc_ffi_c.c
1094 # The atomic functions are written in C.
1095 runtime/internal/atomic_c.lo: go/runtime/internal/atomic/atomic.c runtime.inc
1096         @$(MKDIR_P) runtime/internal
1097         $(LTCOMPILE) -c -o $@ $(srcdir)/go/runtime/internal/atomic/atomic.c
1098 sync/atomic_c.lo: go/sync/atomic/atomic.c runtime.inc
1099         @$(MKDIR_P) sync
1100         $(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
1102 # A few syscall functions are written in C.
1103 syscall/clone_linux.lo: go/syscall/clone_linux.c runtime.inc
1104         @$(MKDIR_P) syscall
1105         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/clone_linux.c
1106 syscall/errno.lo: go/syscall/errno.c runtime.inc
1107         @$(MKDIR_P) syscall
1108         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/errno.c
1109 syscall/signame.lo: go/syscall/signame.c runtime.inc
1110         @$(MKDIR_P) syscall
1111         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/signame.c
1112 syscall/wait.lo: go/syscall/wait.c runtime.inc
1113         @$(MKDIR_P) syscall
1114         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/wait.c
1116 # Solaris 12 changed the type of fields in struct stat.
1117 # Use a build tag, based on a configure check, to cope.
1118 if LIBGO_IS_SOLARIS
1119 if HAVE_STAT_TIMESPEC
1120 matchargs_os = --tag=solaristag
1121 else
1122 matchargs_os =
1123 endif
1124 else
1125 matchargs_os =
1126 endif
1128 if LIBGO_IS_BSD
1130 # Build golang_org/x/net/route only on BSD systems.
1132 $(eval $(call PACKAGE_template,golang_org/x/net/route))
1134 golang_org_x_net_route_lo = \
1135         golang_org/x/net/route.lo
1136 golang_org_x_net_route_check = \
1137         golang_org/x/net/route/check
1139 endif
1141 if LIBGO_IS_SOLARIS
1143 # Build golang_org/x/net/lif only on Solaris systems.
1145 $(eval $(call PACKAGE_template,golang_org/x/net/lif))
1147 golang_org_x_net_lif_lo = \
1148         golang_org/x/net/lif.lo
1149 golang_org_x_net_lif_check = \
1150         golang_org/x/net/lif/check
1152 endif
1154 TEST_PACKAGES = \
1155         bufio/check \
1156         bytes/check \
1157         context/check \
1158         errors/check \
1159         expvar/check \
1160         flag/check \
1161         fmt/check \
1162         html/check \
1163         image/check \
1164         io/check \
1165         log/check \
1166         math/check \
1167         mime/check \
1168         net/check \
1169         os/check \
1170         path/check \
1171         reflect/check \
1172         regexp/check \
1173         runtime/check \
1174         sort/check \
1175         strconv/check \
1176         strings/check \
1177         sync/check \
1178         syscall/check \
1179         time/check \
1180         unicode/check \
1181         archive/tar/check \
1182         archive/zip/check \
1183         compress/bzip2/check \
1184         compress/flate/check \
1185         compress/gzip/check \
1186         compress/lzw/check \
1187         compress/zlib/check \
1188         container/heap/check \
1189         container/list/check \
1190         container/ring/check \
1191         crypto/aes/check \
1192         crypto/cipher/check \
1193         crypto/des/check \
1194         crypto/dsa/check \
1195         crypto/ecdsa/check \
1196         crypto/elliptic/check \
1197         crypto/hmac/check \
1198         crypto/md5/check \
1199         crypto/rand/check \
1200         crypto/rc4/check \
1201         crypto/rsa/check \
1202         crypto/sha1/check \
1203         crypto/sha256/check \
1204         crypto/sha512/check \
1205         crypto/subtle/check \
1206         crypto/tls/check \
1207         crypto/x509/check \
1208         database/sql/check \
1209         database/sql/driver/check \
1210         debug/dwarf/check \
1211         debug/elf/check \
1212         debug/macho/check \
1213         debug/pe/check \
1214         debug/plan9obj/check \
1215         encoding/ascii85/check \
1216         encoding/asn1/check \
1217         encoding/base32/check \
1218         encoding/base64/check \
1219         encoding/binary/check \
1220         encoding/csv/check \
1221         encoding/gob/check \
1222         encoding/hex/check \
1223         encoding/json/check \
1224         encoding/pem/check \
1225         encoding/xml/check \
1226         exp/proxy/check \
1227         exp/terminal/check \
1228         html/template/check \
1229         go/ast/check \
1230         go/build/check \
1231         go/constant/check \
1232         go/doc/check \
1233         go/format/check \
1234         go/internal/gcimporter/check \
1235         go/internal/gccgoimporter/check \
1236         go/parser/check \
1237         go/printer/check \
1238         go/scanner/check \
1239         go/token/check \
1240         go/types/check \
1241         golang_org/x/crypto/chacha20poly1305/check \
1242         golang_org/x/crypto/chacha20poly1305/internal/chacha20/check \
1243         golang_org/x/crypto/curve25519/check \
1244         golang_org/x/crypto/poly1305/check \
1245         golang_org/x/net/http2/hpack/check \
1246         golang_org/x/net/idna/check \
1247         golang_org/x/net/lex/httplex/check \
1248         $(golang_org_x_net_lif_check) \
1249         $(golang_org_x_net_route_check) \
1250         hash/adler32/check \
1251         hash/crc32/check \
1252         hash/crc64/check \
1253         hash/fnv/check \
1254         image/color/check \
1255         image/draw/check \
1256         image/jpeg/check \
1257         image/png/check \
1258         index/suffixarray/check \
1259         internal/pprof/profile/check \
1260         internal/singleflight/check \
1261         internal/trace/check \
1262         io/ioutil/check \
1263         log/syslog/check \
1264         math/big/check \
1265         math/cmplx/check \
1266         math/rand/check \
1267         mime/multipart/check \
1268         mime/quotedprintable/check \
1269         net/http/check \
1270         net/http/cgi/check \
1271         net/http/cookiejar/check \
1272         net/http/fcgi/check \
1273         net/http/httptest/check \
1274         net/http/httptrace/check \
1275         net/http/httputil/check \
1276         net/http/internal/check \
1277         net/internal/socktest/check \
1278         net/mail/check \
1279         net/rpc/check \
1280         net/smtp/check \
1281         net/textproto/check \
1282         net/url/check \
1283         net/rpc/jsonrpc/check \
1284         os/exec/check \
1285         os/signal/check \
1286         os/user/check \
1287         path/filepath/check \
1288         regexp/syntax/check \
1289         runtime/debug/check \
1290         runtime/internal/atomic/check \
1291         runtime/internal/sys/check \
1292         runtime/pprof/check \
1293         runtime/pprof/internal/protopprof/check \
1294         sync/atomic/check \
1295         text/scanner/check \
1296         text/tabwriter/check \
1297         text/template/check \
1298         text/template/parse/check \
1299         testing/quick/check \
1300         unicode/utf16/check \
1301         unicode/utf8/check
1303 check: check-tail
1304 check-recursive: check-head
1306 check-head:
1307         @echo "Test Run By $${USER} on `date`" > libgo.head
1308         @echo "Native configuration is $(host_triplet)" >> libgo.head
1309         @echo >> libgo.head
1310         @echo "         === libgo tests ===" >> libgo.head
1311         @echo >> libgo.head
1313 check-tail: check-recursive check-multi
1314         @if test "$(USE_DEJAGNU)" = "yes"; then \
1315           exit 0; \
1316         fi; \
1317         lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
1318         for dir in . $(MULTIDIRS); do \
1319           mv ../$${dir}/$${lib}/libgo.sum ../$${dir}/$${lib}/libgo.sum.sep; \
1320           mv ../$${dir}/$${lib}/libgo.log ../$${dir}/$${lib}/libgo.log.sep; \
1321         done; \
1322         mv libgo.head libgo.sum; \
1323         cp libgo.sum libgo.log; \
1324         echo "Schedule of variations:" >> libgo.sum; \
1325         for dir in . $(MULTIDIRS); do \
1326           multidir=../$${dir}/$${lib}; \
1327           multivar=`cat $${multidir}/libgo.var`; \
1328           echo "    $${multivar}" >> libgo.sum; \
1329         done; \
1330         echo >> libgo.sum; \
1331         pass=0; fail=0; untested=0; \
1332         for dir in . $(MULTIDIRS); do \
1333           multidir=../$${dir}/$${lib}; \
1334           multivar=`cat $${multidir}/libgo.var`; \
1335           echo "Running target $${multivar}" >> libgo.sum; \
1336           echo "Running $(srcdir)/libgo.exp ..." >> libgo.sum; \
1337           cat $${multidir}/libgo.sum.sep >> libgo.sum; \
1338           cat $${multidir}/libgo.log.sep >> libgo.log; \
1339           if test -n "${MULTIDIRS}"; then \
1340             echo "              === libgo Summary for $${multivar} ===" >> libgo.sum; \
1341             echo >> libgo.sum; \
1342           fi; \
1343           p=`grep -c PASS $${multidir}/libgo.sum.sep`; \
1344           pass=`expr $$pass + $$p`; \
1345           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1346             echo "# of expected passes          $$p" >> libgo.sum; \
1347           fi; \
1348           p=`grep -c FAIL $${multidir}/libgo.sum.sep`; \
1349           fail=`expr $$fail + $$p`; \
1350           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1351             echo "# of unexpected failures      $$p" >> libgo.sum; \
1352           fi; \
1353           p=`grep -c UNTESTED $${multidir}/libgo.sum.sep`; \
1354           untested=`expr $$untested + $$p`; \
1355           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1356             echo "# of untested testcases               $$p" >> libgo.sum; \
1357           fi; \
1358         done; \
1359         echo >> libgo.sum; \
1360         echo "          === libgo Summary ===" >> libgo.sum; \
1361         echo >> libgo.sum; \
1362         if test "$$pass" -ne "0"; then \
1363           echo "# of expected passes            $$pass" >> libgo.sum; \
1364         fi; \
1365         if test "$$fail" -ne "0"; then \
1366           echo "# of unexpected failures        $$fail" >> libgo.sum; \
1367         fi; \
1368         if test "$$untested" -ne "0"; then \
1369           echo "# of untested testcases         $$untested" >> libgo.sum; \
1370         fi; \
1371         echo `echo $(GOC) | sed -e 's/ .*//'`  `$(GOC) -v 2>&1 | grep " version" | sed -n -e 's/.* \(version.*$$\)/\1/p'` >> libgo.sum; \
1372         echo >> libgo.log; \
1373         echo "runtest completed at `date`" >> libgo.log; \
1374         if test "$$fail" -ne "0"; then \
1375           status=1; \
1376         else \
1377           status=0; \
1378         fi; \
1379         exit $$status
1381 check-am:
1382         @rm -f libgo.sum libgo.log libgo.tail
1383         @multivar="unix"; \
1384         [ -z "$(MULTIFLAGS)" ] || multivar="$${multivar}/$(MULTIFLAGS)"; \
1385         echo "$${multivar}" > libgo.var
1386         @for f in $(TEST_PACKAGES); do \
1387            rm -f $$f-testsum $$f-testlog; \
1388          done
1389         -@$(MAKE) -k $(TEST_PACKAGES)
1390         @for f in $(TEST_PACKAGES); do \
1391           if test -f $$f-testsum; then \
1392             cat $$f-testsum >> libgo.sum; \
1393           fi; \
1394           if test -f $$f-testlog; then \
1395             cat $$f-testlog >> libgo.log; \
1396           fi; \
1397         done
1399 check-multi:
1400         $(MULTIDO) $(AM_MAKEFLAGS) DO=check-am multi-do # $(MAKE)
1402 bench:
1403         -@$(MAKE) -k $(TEST_PACKAGES) GOBENCH=.
1405 MOSTLYCLEAN_FILES = libgo.head libgo.sum.sep libgo.log.sep
1407 mostlyclean-local:
1408         find . -name '*.lo' -print | xargs $(LIBTOOL) --mode=clean rm -f
1409         find . -name '*.$(OBJEXT)' -print | xargs rm -f
1410         find . -name '*-testsum' -print | xargs rm -f
1411         find . -name '*-testlog' -print | xargs rm -f
1413 CLEANFILES = *.go *.gox goc2c *.c s-version libgo.sum libgo.log
1415 clean-local:
1416         find . -name '*.la' -print | xargs $(LIBTOOL) --mode=clean rm -f
1417         find . -name '*.a' -print | xargs rm -f