Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(227)

Side by Side Diff: libgo/Makefile.am

Issue 4035044: code review 4035044: Update to current version of Go library. (Closed)
Patch Set: Created 14 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « libgo/MERGE ('k') | libgo/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Makefile.am -- Go library Makefile. 1 # Makefile.am -- Go library Makefile.
2 2
3 # Copyright 2009 The Go Authors. All rights reserved. 3 # Copyright 2009 The Go Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style 4 # Use of this source code is governed by a BSD-style
5 # license that can be found in the LICENSE file. 5 # license that can be found in the LICENSE file.
6 6
7 # Process this file with autoreconf to produce Makefile.in. 7 # Process this file with autoreconf to produce Makefile.in.
8 8
9 # Go support. 9 # Go support.
10 SUFFIXES = .c .go .gox .o .obj .lo .a 10 SUFFIXES = .c .go .gox .o .obj .lo .a
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 container/ring.gox \ 170 container/ring.gox \
171 container/vector.gox 171 container/vector.gox
172 172
173 toolexeclibgocryptodir = $(toolexeclibgodir)/crypto 173 toolexeclibgocryptodir = $(toolexeclibgodir)/crypto
174 174
175 toolexeclibgocrypto_DATA = \ 175 toolexeclibgocrypto_DATA = \
176 crypto/aes.gox \ 176 crypto/aes.gox \
177 crypto/block.gox \ 177 crypto/block.gox \
178 crypto/blowfish.gox \ 178 crypto/blowfish.gox \
179 crypto/cast5.gox \ 179 crypto/cast5.gox \
180 crypto/cipher.gox \
181 crypto/elliptic.gox \
180 crypto/hmac.gox \ 182 crypto/hmac.gox \
181 crypto/md4.gox \ 183 crypto/md4.gox \
182 crypto/md5.gox \ 184 crypto/md5.gox \
183 crypto/ocsp.gox \ 185 crypto/ocsp.gox \
184 crypto/rand.gox \ 186 crypto/rand.gox \
185 crypto/rc4.gox \ 187 crypto/rc4.gox \
186 crypto/ripemd160.gox \ 188 crypto/ripemd160.gox \
187 crypto/rsa.gox \ 189 crypto/rsa.gox \
188 crypto/sha1.gox \ 190 crypto/sha1.gox \
189 crypto/sha256.gox \ 191 crypto/sha256.gox \
190 crypto/sha512.gox \ 192 crypto/sha512.gox \
191 crypto/subtle.gox \ 193 crypto/subtle.gox \
192 crypto/tls.gox \ 194 crypto/tls.gox \
195 crypto/twofish.gox \
193 crypto/x509.gox \ 196 crypto/x509.gox \
194 crypto/xtea.gox 197 crypto/xtea.gox
195 198
199 toolexeclibgocryptoopenpgpdir = $(toolexeclibgocryptodir)/openpgp
200
201 toolexeclibgocryptoopenpgp_DATA = \
202 crypto/openpgp/armor.gox \
203 crypto/openpgp/error.gox \
204 crypto/openpgp/s2k.gox
205
196 toolexeclibgodebugdir = $(toolexeclibgodir)/debug 206 toolexeclibgodebugdir = $(toolexeclibgodir)/debug
197 207
198 toolexeclibgodebug_DATA = \ 208 toolexeclibgodebug_DATA = \
199 debug/dwarf.gox \ 209 debug/dwarf.gox \
200 debug/elf.gox \ 210 debug/elf.gox \
201 debug/gosym.gox \ 211 debug/gosym.gox \
202 debug/macho.gox \ 212 debug/macho.gox \
203 debug/pe.gox \ 213 debug/pe.gox \
204 debug/proc.gox 214 debug/proc.gox
205 215
206 toolexeclibgoencodingdir = $(toolexeclibgodir)/encoding 216 toolexeclibgoencodingdir = $(toolexeclibgodir)/encoding
207 217
208 toolexeclibgoencoding_DATA = \ 218 toolexeclibgoencoding_DATA = \
209 encoding/ascii85.gox \ 219 encoding/ascii85.gox \
220 encoding/base32.gox \
210 encoding/base64.gox \ 221 encoding/base64.gox \
211 encoding/binary.gox \ 222 encoding/binary.gox \
223 encoding/line.gox \
212 encoding/git85.gox \ 224 encoding/git85.gox \
213 encoding/hex.gox \ 225 encoding/hex.gox \
214 encoding/pem.gox 226 encoding/pem.gox
215 227
216 toolexeclibgoexpdir = $(toolexeclibgodir)/exp 228 toolexeclibgoexpdir = $(toolexeclibgodir)/exp
217 229
218 toolexeclibgoexp_DATA = \ 230 toolexeclibgoexp_DATA = \
219 exp/datafmt.gox \ 231 exp/datafmt.gox \
220 exp/draw.gox \ 232 exp/draw.gox \
221 exp/eval.gox 233 exp/eval.gox
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 mime/multipart.gox 277 mime/multipart.gox
266 278
267 toolexeclibgonetdir = $(toolexeclibgodir)/net 279 toolexeclibgonetdir = $(toolexeclibgodir)/net
268 280
269 toolexeclibgonet_DATA = \ 281 toolexeclibgonet_DATA = \
270 net/dict.gox \ 282 net/dict.gox \
271 net/textproto.gox 283 net/textproto.gox
272 284
273 toolexeclibgoosdir = $(toolexeclibgodir)/os 285 toolexeclibgoosdir = $(toolexeclibgodir)/os
274 286
287 if LIBGO_IS_LINUX
288 # os_inotify_gox = os/inotify.gox
289 os_inotify_gox =
290 else
291 os_inotify_gox =
292 endif
293
275 toolexeclibgoos_DATA = \ 294 toolexeclibgoos_DATA = \
295 $(os_inotify_gox) \
276 os/signal.gox 296 os/signal.gox
277 297
278 toolexeclibgorpcdir = $(toolexeclibgodir)/rpc 298 toolexeclibgorpcdir = $(toolexeclibgodir)/rpc
279 299
280 toolexeclibgorpc_DATA = \ 300 toolexeclibgorpc_DATA = \
281 rpc/jsonrpc.gox 301 rpc/jsonrpc.gox
282 302
283 toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime 303 toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime
284 304
285 toolexeclibgoruntime_DATA = \ 305 toolexeclibgoruntime_DATA = \
306 runtime/debug.gox \
286 runtime/pprof.gox 307 runtime/pprof.gox
287 308
288 toolexeclibgotestingdir = $(toolexeclibgodir)/testing 309 toolexeclibgotestingdir = $(toolexeclibgodir)/testing
289 310
290 toolexeclibgotesting_DATA = \ 311 toolexeclibgotesting_DATA = \
291 testing/iotest.gox \ 312 testing/iotest.gox \
292 testing/quick.gox \ 313 testing/quick.gox \
293 testing/script.gox 314 testing/script.gox
294 315
295 if HAVE_SYS_MMAN_H 316 if HAVE_SYS_MMAN_H
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 go/gob/error.go \ 517 go/gob/error.go \
497 go/gob/type.go 518 go/gob/type.go
498 519
499 go_hash_files = \ 520 go_hash_files = \
500 go/hash/hash.go 521 go/hash/hash.go
501 522
502 go_html_files = \ 523 go_html_files = \
503 go/html/doc.go \ 524 go/html/doc.go \
504 go/html/entity.go \ 525 go/html/entity.go \
505 go/html/escape.go \ 526 go/html/escape.go \
527 go/html/parse.go \
506 go/html/token.go 528 go/html/token.go
507 529
508 go_http_files = \ 530 go_http_files = \
509 go/http/chunked.go \ 531 go/http/chunked.go \
510 go/http/client.go \ 532 go/http/client.go \
511 go/http/dump.go \ 533 go/http/dump.go \
512 go/http/fs.go \ 534 go/http/fs.go \
513 go/http/lex.go \ 535 go/http/lex.go \
514 go/http/persist.go \ 536 go/http/persist.go \
515 go/http/request.go \ 537 go/http/request.go \
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 go/math/asinh.go \ 569 go/math/asinh.go \
548 go/math/atan.go \ 570 go/math/atan.go \
549 go/math/atanh.go \ 571 go/math/atanh.go \
550 go/math/atan2.go \ 572 go/math/atan2.go \
551 go/math/bits.go \ 573 go/math/bits.go \
552 go/math/cbrt.go \ 574 go/math/cbrt.go \
553 go/math/const.go \ 575 go/math/const.go \
554 go/math/copysign.go \ 576 go/math/copysign.go \
555 go/math/erf.go \ 577 go/math/erf.go \
556 go/math/exp.go \ 578 go/math/exp.go \
579 go/math/exp_port.go \
557 go/math/exp2.go \ 580 go/math/exp2.go \
558 go/math/expm1.go \ 581 go/math/expm1.go \
559 go/math/fabs.go \ 582 go/math/fabs.go \
560 go/math/fdim.go \ 583 go/math/fdim.go \
561 go/math/floor.go \ 584 go/math/floor.go \
562 go/math/fmod.go \ 585 go/math/fmod.go \
563 go/math/frexp.go \ 586 go/math/frexp.go \
564 go/math/gamma.go \ 587 go/math/gamma.go \
565 go/math/hypot.go \ 588 go/math/hypot.go \
566 go/math/hypot_port.go \ 589 go/math/hypot_port.go \
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 go/os/types.go 674 go/os/types.go
652 675
653 go_patch_files = \ 676 go_patch_files = \
654 go/patch/apply.go \ 677 go/patch/apply.go \
655 go/patch/git.go \ 678 go/patch/git.go \
656 go/patch/patch.go \ 679 go/patch/patch.go \
657 go/patch/textdiff.go 680 go/patch/textdiff.go
658 681
659 go_path_files = \ 682 go_path_files = \
660 go/path/match.go \ 683 go/path/match.go \
661 » go/path/path.go 684 » go/path/path.go \
685 » go/path/path_unix.go
662 686
663 go_rand_files = \ 687 go_rand_files = \
664 go/rand/exp.go \ 688 go/rand/exp.go \
665 go/rand/normal.go \ 689 go/rand/normal.go \
666 go/rand/rand.go \ 690 go/rand/rand.go \
667 go/rand/rng.go \ 691 go/rand/rng.go \
668 go/rand/zipf.go 692 go/rand/zipf.go
669 693
670 go_reflect_files = \ 694 go_reflect_files = \
671 go/reflect/deepequal.go \ 695 go/reflect/deepequal.go \
672 go/reflect/type.go \ 696 go/reflect/type.go \
673 go/reflect/value.go 697 go/reflect/value.go
674 698
675 go_regexp_files = \ 699 go_regexp_files = \
676 go/regexp/regexp.go 700 go/regexp/regexp.go
677 701
678 go_rpc_files = \ 702 go_rpc_files = \
679 go/rpc/client.go \ 703 go/rpc/client.go \
680 go/rpc/debug.go \ 704 go/rpc/debug.go \
681 go/rpc/server.go 705 go/rpc/server.go
682 706
683 go_runtime_files = \ 707 go_runtime_files = \
684 go/runtime/debug.go \ 708 go/runtime/debug.go \
685 go/runtime/error.go \ 709 go/runtime/error.go \
686 go/runtime/extern.go \ 710 go/runtime/extern.go \
711 go/runtime/malloc_defs.go \
712 go/runtime/runtime_defs.go \
687 go/runtime/sig.go \ 713 go/runtime/sig.go \
688 go/runtime/softfloat64.go \ 714 go/runtime/softfloat64.go \
689 go/runtime/type.go \ 715 go/runtime/type.go \
690 version.go 716 version.go
691 717
692 version.go: s-version; @true 718 version.go: s-version; @true
693 s-version: Makefile 719 s-version: Makefile
694 rm -f version.go.tmp 720 rm -f version.go.tmp
695 echo "package runtime" > version.go.tmp 721 echo "package runtime" > version.go.tmp
696 echo 'const defaultGoroot = "$(prefix)"' >> version.go.tmp 722 echo 'const defaultGoroot = "$(prefix)"' >> version.go.tmp
697 echo 'const theVersion = "'`$(CC) --version | sed 1q`'"' >> version.go.t mp 723 echo 'const theVersion = "'`$(CC) --version | sed 1q`'"' >> version.go.t mp
698 echo 'const theGoarch = "'$(GOARCH)'"' >> version.go.tmp 724 echo 'const theGoarch = "'$(GOARCH)'"' >> version.go.tmp
699 echo 'const theGoos = "'$(GOOS)'"' >> version.go.tmp 725 echo 'const theGoos = "'$(GOOS)'"' >> version.go.tmp
700 $(SHELL) $(srcdir)/../move-if-change version.go.tmp version.go 726 $(SHELL) $(srcdir)/../move-if-change version.go.tmp version.go
701 $(STAMP) $@ 727 $(STAMP) $@
702 728
703 go_scanner_files = \ 729 go_scanner_files = \
704 go/scanner/scanner.go 730 go/scanner/scanner.go
705 731
706 go_smtp_files = \ 732 go_smtp_files = \
707 go/smtp/auth.go \ 733 go/smtp/auth.go \
708 go/smtp/smtp.go 734 go/smtp/smtp.go
709 735
710 go_sort_files = \ 736 go_sort_files = \
737 go/sort/search.go \
711 go/sort/sort.go 738 go/sort/sort.go
712 739
713 go_strconv_files = \ 740 go_strconv_files = \
714 go/strconv/atob.go \ 741 go/strconv/atob.go \
715 go/strconv/atof.go \ 742 go/strconv/atof.go \
716 go/strconv/atoi.go \ 743 go/strconv/atoi.go \
717 go/strconv/decimal.go \ 744 go/strconv/decimal.go \
718 go/strconv/ftoa.go \ 745 go/strconv/ftoa.go \
719 go/strconv/itoa.go \ 746 go/strconv/itoa.go \
720 go/strconv/quote.go 747 go/strconv/quote.go
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 go/crypto/block/eax.go \ 857 go/crypto/block/eax.go \
831 go/crypto/block/ecb.go \ 858 go/crypto/block/ecb.go \
832 go/crypto/block/ofb.go \ 859 go/crypto/block/ofb.go \
833 go/crypto/block/xor.go 860 go/crypto/block/xor.go
834 go_crypto_blowfish_files = \ 861 go_crypto_blowfish_files = \
835 go/crypto/blowfish/block.go \ 862 go/crypto/blowfish/block.go \
836 go/crypto/blowfish/const.go \ 863 go/crypto/blowfish/const.go \
837 go/crypto/blowfish/cipher.go 864 go/crypto/blowfish/cipher.go
838 go_crypto_cast5_files = \ 865 go_crypto_cast5_files = \
839 go/crypto/cast5/cast5.go 866 go/crypto/cast5/cast5.go
867 go_crypto_cipher_files = \
868 go/crypto/cipher/cbc.go \
869 go/crypto/cipher/cfb.go \
870 go/crypto/cipher/cipher.go \
871 go/crypto/cipher/ctr.go \
872 go/crypto/cipher/io.go \
873 go/crypto/cipher/ocfb.go \
874 go/crypto/cipher/ofb.go
875 go_crypto_elliptic_files = \
876 go/crypto/elliptic/elliptic.go
840 go_crypto_hmac_files = \ 877 go_crypto_hmac_files = \
841 go/crypto/hmac/hmac.go 878 go/crypto/hmac/hmac.go
842 go_crypto_md4_files = \ 879 go_crypto_md4_files = \
843 go/crypto/md4/md4.go \ 880 go/crypto/md4/md4.go \
844 go/crypto/md4/md4block.go 881 go/crypto/md4/md4block.go
845 go_crypto_md5_files = \ 882 go_crypto_md5_files = \
846 go/crypto/md5/md5.go \ 883 go/crypto/md5/md5.go \
847 go/crypto/md5/md5block.go 884 go/crypto/md5/md5block.go
848 go_crypto_ocsp_files = \ 885 go_crypto_ocsp_files = \
849 go/crypto/ocsp/ocsp.go 886 go/crypto/ocsp/ocsp.go
(...skipping 15 matching lines...) Expand all
865 go/crypto/sha256/sha256.go \ 902 go/crypto/sha256/sha256.go \
866 go/crypto/sha256/sha256block.go 903 go/crypto/sha256/sha256block.go
867 go_crypto_sha512_files = \ 904 go_crypto_sha512_files = \
868 go/crypto/sha512/sha512.go \ 905 go/crypto/sha512/sha512.go \
869 go/crypto/sha512/sha512block.go 906 go/crypto/sha512/sha512block.go
870 go_crypto_subtle_files = \ 907 go_crypto_subtle_files = \
871 go/crypto/subtle/constant_time.go 908 go/crypto/subtle/constant_time.go
872 go_crypto_tls_files = \ 909 go_crypto_tls_files = \
873 go/crypto/tls/alert.go \ 910 go/crypto/tls/alert.go \
874 go/crypto/tls/ca_set.go \ 911 go/crypto/tls/ca_set.go \
912 go/crypto/tls/cipher_suites.go \
875 go/crypto/tls/common.go \ 913 go/crypto/tls/common.go \
876 go/crypto/tls/conn.go \ 914 go/crypto/tls/conn.go \
877 go/crypto/tls/handshake_client.go \ 915 go/crypto/tls/handshake_client.go \
878 go/crypto/tls/handshake_messages.go \ 916 go/crypto/tls/handshake_messages.go \
879 go/crypto/tls/handshake_server.go \ 917 go/crypto/tls/handshake_server.go \
918 go/crypto/tls/key_agreement.go \
880 go/crypto/tls/prf.go \ 919 go/crypto/tls/prf.go \
881 go/crypto/tls/tls.go 920 go/crypto/tls/tls.go
921 go_crypto_twofish_files = \
922 go/crypto/twofish/twofish.go
882 go_crypto_x509_files = \ 923 go_crypto_x509_files = \
883 go/crypto/x509/x509.go 924 go/crypto/x509/x509.go
884 go_crypto_xtea_files = \ 925 go_crypto_xtea_files = \
885 go/crypto/xtea/block.go \ 926 go/crypto/xtea/block.go \
886 go/crypto/xtea/cipher.go 927 go/crypto/xtea/cipher.go
887 928
929 go_crypto_openpgp_armor_files = \
930 go/crypto/openpgp/armor/armor.go \
931 go/crypto/openpgp/armor/encode.go
932 go_crypto_openpgp_error_files = \
933 go/crypto/openpgp/error/error.go
934 go_crypto_openpgp_s2k_files = \
935 go/crypto/openpgp/s2k/s2k.go
936
888 go_debug_dwarf_files = \ 937 go_debug_dwarf_files = \
889 go/debug/dwarf/buf.go \ 938 go/debug/dwarf/buf.go \
890 go/debug/dwarf/const.go \ 939 go/debug/dwarf/const.go \
891 go/debug/dwarf/entry.go \ 940 go/debug/dwarf/entry.go \
892 go/debug/dwarf/open.go \ 941 go/debug/dwarf/open.go \
893 go/debug/dwarf/type.go \ 942 go/debug/dwarf/type.go \
894 go/debug/dwarf/unit.go 943 go/debug/dwarf/unit.go
895 go_debug_elf_files = \ 944 go_debug_elf_files = \
896 go/debug/elf/elf.go \ 945 go/debug/elf/elf.go \
897 go/debug/elf/file.go 946 go/debug/elf/file.go
898 go_debug_gosym_files = \ 947 go_debug_gosym_files = \
899 go/debug/gosym/pclntab.go \ 948 go/debug/gosym/pclntab.go \
900 go/debug/gosym/symtab.go 949 go/debug/gosym/symtab.go
901 go_debug_macho_files = \ 950 go_debug_macho_files = \
902 go/debug/macho/file.go \ 951 go/debug/macho/file.go \
903 go/debug/macho/macho.go 952 go/debug/macho/macho.go
904 go_debug_pe_files = \ 953 go_debug_pe_files = \
905 go/debug/pe/file.go \ 954 go/debug/pe/file.go \
906 go/debug/pe/pe.go 955 go/debug/pe/pe.go
907 956
908 go_debug_proc_files = \ 957 go_debug_proc_files = \
909 go/debug/proc/proc.go \ 958 go/debug/proc/proc.go \
910 go/debug/proc/proc_$(GOOS).go \ 959 go/debug/proc/proc_$(GOOS).go \
911 go/debug/proc/regs_$(GOOS)_$(GOARCH).go 960 go/debug/proc/regs_$(GOOS)_$(GOARCH).go
912 961
913 go_encoding_ascii85_files = \ 962 go_encoding_ascii85_files = \
914 go/encoding/ascii85/ascii85.go 963 go/encoding/ascii85/ascii85.go
964 go_encoding_base32_files = \
965 go/encoding/base32/base32.go
915 go_encoding_base64_files = \ 966 go_encoding_base64_files = \
916 go/encoding/base64/base64.go 967 go/encoding/base64/base64.go
917 go_encoding_binary_files = \ 968 go_encoding_binary_files = \
918 go/encoding/binary/binary.go 969 go/encoding/binary/binary.go
919 go_encoding_git85_files = \ 970 go_encoding_git85_files = \
920 go/encoding/git85/git.go 971 go/encoding/git85/git.go
921 go_encoding_hex_files = \ 972 go_encoding_hex_files = \
922 go/encoding/hex/hex.go 973 go/encoding/hex/hex.go
974 go_encoding_line_files = \
975 go/encoding/line/line.go
923 go_encoding_pem_files = \ 976 go_encoding_pem_files = \
924 go/encoding/pem/pem.go 977 go/encoding/pem/pem.go
925 978
926 go_exp_datafmt_files = \ 979 go_exp_datafmt_files = \
927 go/exp/datafmt/datafmt.go \ 980 go/exp/datafmt/datafmt.go \
928 go/exp/datafmt/parser.go 981 go/exp/datafmt/parser.go
929 go_exp_draw_files = \ 982 go_exp_draw_files = \
930 go/exp/draw/draw.go \ 983 go/exp/draw/draw.go \
931 go/exp/draw/event.go 984 go/exp/draw/event.go
932 go_exp_eval_files = \ 985 go_exp_eval_files = \
(...skipping 22 matching lines...) Expand all
955 go_go_parser_files = \ 1008 go_go_parser_files = \
956 go/go/parser/interface.go \ 1009 go/go/parser/interface.go \
957 go/go/parser/parser.go 1010 go/go/parser/parser.go
958 go_go_printer_files = \ 1011 go_go_printer_files = \
959 go/go/printer/nodes.go \ 1012 go/go/printer/nodes.go \
960 go/go/printer/printer.go 1013 go/go/printer/printer.go
961 go_go_scanner_files = \ 1014 go_go_scanner_files = \
962 go/go/scanner/errors.go \ 1015 go/go/scanner/errors.go \
963 go/go/scanner/scanner.go 1016 go/go/scanner/scanner.go
964 go_go_token_files = \ 1017 go_go_token_files = \
1018 go/go/token/position.go \
965 go/go/token/token.go 1019 go/go/token/token.go
966 go_go_typechecker_files = \ 1020 go_go_typechecker_files = \
967 go/go/typechecker/scope.go \ 1021 go/go/typechecker/scope.go \
968 go/go/typechecker/typechecker.go \ 1022 go/go/typechecker/typechecker.go \
969 go/go/typechecker/universe.go 1023 go/go/typechecker/universe.go
970 1024
971 go_hash_adler32_files = \ 1025 go_hash_adler32_files = \
972 go/hash/adler32/adler32.go 1026 go/hash/adler32/adler32.go
973 go_hash_crc32_files = \ 1027 go_hash_crc32_files = \
974 go/hash/crc32/crc32.go 1028 go/hash/crc32/crc32.go
975 go_hash_crc64_files = \ 1029 go_hash_crc64_files = \
976 go/hash/crc64/crc64.go 1030 go/hash/crc64/crc64.go
977 1031
978 go_http_pprof_files = \ 1032 go_http_pprof_files = \
979 go/http/pprof/pprof.go 1033 go/http/pprof/pprof.go
980 1034
981 go_image_jpeg_files = \ 1035 go_image_jpeg_files = \
982 go/image/jpeg/huffman.go \ 1036 go/image/jpeg/huffman.go \
983 go/image/jpeg/idct.go \ 1037 go/image/jpeg/idct.go \
984 go/image/jpeg/reader.go 1038 go/image/jpeg/reader.go
985 1039
986 go_image_png_files = \ 1040 go_image_png_files = \
987 go/image/png/reader.go \ 1041 go/image/png/reader.go \
988 go/image/png/writer.go 1042 go/image/png/writer.go
989 1043
990 go_index_suffixarray_files = \ 1044 go_index_suffixarray_files = \
1045 go/index/suffixarray/qsufsort.go \
991 go/index/suffixarray/suffixarray.go 1046 go/index/suffixarray/suffixarray.go
992 1047
993 go_io_ioutil_files = \ 1048 go_io_ioutil_files = \
994 go/io/ioutil/ioutil.go \ 1049 go/io/ioutil/ioutil.go \
995 go/io/ioutil/tempfile.go 1050 go/io/ioutil/tempfile.go
996 1051
997 go_mime_multipart_files = \ 1052 go_mime_multipart_files = \
998 go/mime/multipart/multipart.go 1053 go/mime/multipart/multipart.go
999 1054
1000 go_net_dict_files = \ 1055 go_net_dict_files = \
1001 go/net/dict/dict.go 1056 go/net/dict/dict.go
1002 1057
1003 go_net_textproto_files = \ 1058 go_net_textproto_files = \
1004 go/net/textproto/pipeline.go \ 1059 go/net/textproto/pipeline.go \
1005 go/net/textproto/reader.go \ 1060 go/net/textproto/reader.go \
1006 go/net/textproto/textproto.go \ 1061 go/net/textproto/textproto.go \
1007 go/net/textproto/writer.go 1062 go/net/textproto/writer.go
1008 1063
1064 go_os_inotify_files = \
1065 go/os/inotify/inotify_linux.go
1066
1009 go_os_signal_files = \ 1067 go_os_signal_files = \
1010 go/os/signal/signal.go \ 1068 go/os/signal/signal.go \
1011 unix.go 1069 unix.go
1012 1070
1013 go_rpc_jsonrpc_files = \ 1071 go_rpc_jsonrpc_files = \
1014 go/rpc/jsonrpc/client.go \ 1072 go/rpc/jsonrpc/client.go \
1015 go/rpc/jsonrpc/server.go 1073 go/rpc/jsonrpc/server.go
1016 1074
1075 go_runtime_debug_files = \
1076 go/runtime/debug/stack.go
1017 go_runtime_pprof_files = \ 1077 go_runtime_pprof_files = \
1018 go/runtime/pprof/pprof.go 1078 go/runtime/pprof/pprof.go
1019 1079
1020 go_testing_iotest_files = \ 1080 go_testing_iotest_files = \
1021 go/testing/iotest/logger.go \ 1081 go/testing/iotest/logger.go \
1022 go/testing/iotest/reader.go \ 1082 go/testing/iotest/reader.go \
1023 go/testing/iotest/writer.go 1083 go/testing/iotest/writer.go
1024 go_testing_quick_files = \ 1084 go_testing_quick_files = \
1025 go/testing/quick/quick.go 1085 go/testing/quick/quick.go
1026 go_testing_script_files = \ 1086 go_testing_script_files = \
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 syscalls/syscall_unix.go \ 1189 syscalls/syscall_unix.go \
1130 syscalls/stringbyte.go \ 1190 syscalls/stringbyte.go \
1131 syscalls/syscall_$(GOOS).go \ 1191 syscalls/syscall_$(GOOS).go \
1132 syscalls/syscall_$(GOOS)_$(GOARCH).go \ 1192 syscalls/syscall_$(GOOS)_$(GOARCH).go \
1133 syscalls/sysfile_posix.go \ 1193 syscalls/sysfile_posix.go \
1134 sysinfo.go \ 1194 sysinfo.go \
1135 syscall_arch.go 1195 syscall_arch.go
1136 go_syscall_c_files = \ 1196 go_syscall_c_files = \
1137 syscalls/errno.c 1197 syscalls/errno.c
1138 1198
1199 if LIBGO_IS_LINUX
1200 # os_lib_inotify_la = os/libinotify.la
1201 os_lib_inotify_la =
1202 else
1203 os_lib_inotify_la =
1204 endif
1205
1139 libgo_go_objs = \ 1206 libgo_go_objs = \
1140 asn1/libasn1.la \ 1207 asn1/libasn1.la \
1141 big/libbig.la \ 1208 big/libbig.la \
1142 bufio/libbufio.la \ 1209 bufio/libbufio.la \
1143 bytes/libbytes.la \ 1210 bytes/libbytes.la \
1144 cmath/libcmath.la \ 1211 cmath/libcmath.la \
1145 ebnf/libebnf.la \ 1212 ebnf/libebnf.la \
1146 exec/libexec.la \ 1213 exec/libexec.la \
1147 expvar/libexpvar.la \ 1214 expvar/libexpvar.la \
1148 flag/libflag.la \ 1215 flag/libflag.la \
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 compress/libgzip.la \ 1256 compress/libgzip.la \
1190 compress/libzlib.la \ 1257 compress/libzlib.la \
1191 container/libheap.la \ 1258 container/libheap.la \
1192 container/liblist.la \ 1259 container/liblist.la \
1193 container/libring.la \ 1260 container/libring.la \
1194 container/libvector.la \ 1261 container/libvector.la \
1195 crypto/libaes.la \ 1262 crypto/libaes.la \
1196 crypto/libblock.la \ 1263 crypto/libblock.la \
1197 crypto/libblowfish.la \ 1264 crypto/libblowfish.la \
1198 crypto/libcast5.la \ 1265 crypto/libcast5.la \
1266 crypto/libcipher.la \
1267 crypto/libelliptic.la \
1199 crypto/libhmac.la \ 1268 crypto/libhmac.la \
1200 crypto/libmd4.la \ 1269 crypto/libmd4.la \
1201 crypto/libmd5.la \ 1270 crypto/libmd5.la \
1202 crypto/libocsp.la \ 1271 crypto/libocsp.la \
1203 crypto/librand.la \ 1272 crypto/librand.la \
1204 crypto/librc4.la \ 1273 crypto/librc4.la \
1205 crypto/libripemd160.la \ 1274 crypto/libripemd160.la \
1206 crypto/librsa.la \ 1275 crypto/librsa.la \
1207 crypto/libsha1.la \ 1276 crypto/libsha1.la \
1208 crypto/libsha256.la \ 1277 crypto/libsha256.la \
1209 crypto/libsha512.la \ 1278 crypto/libsha512.la \
1210 crypto/libsubtle.la \ 1279 crypto/libsubtle.la \
1211 crypto/libtls.la \ 1280 crypto/libtls.la \
1281 crypto/libtwofish.la \
1212 crypto/libx509.la \ 1282 crypto/libx509.la \
1213 crypto/libxtea.la \ 1283 crypto/libxtea.la \
1284 crypto/openpgp/libarmor.la \
1285 crypto/openpgp/liberror.la \
1286 crypto/openpgp/libs2k.la \
1214 debug/libdwarf.la \ 1287 debug/libdwarf.la \
1215 debug/libelf.la \ 1288 debug/libelf.la \
1216 debug/libgosym.la \ 1289 debug/libgosym.la \
1217 debug/libmacho.la \ 1290 debug/libmacho.la \
1218 debug/libpe.la \ 1291 debug/libpe.la \
1219 debug/libproc.la \ 1292 debug/libproc.la \
1220 encoding/libascii85.la \ 1293 encoding/libascii85.la \
1294 encoding/libbase32.la \
1221 encoding/libbase64.la \ 1295 encoding/libbase64.la \
1222 encoding/libbinary.la \ 1296 encoding/libbinary.la \
1223 encoding/libgit85.la \ 1297 encoding/libgit85.la \
1224 encoding/libhex.la \ 1298 encoding/libhex.la \
1299 encoding/libline.la \
1225 encoding/libpem.la \ 1300 encoding/libpem.la \
1226 exp/libdatafmt.la \ 1301 exp/libdatafmt.la \
1227 exp/libdraw.la \ 1302 exp/libdraw.la \
1228 exp/libeval.la \ 1303 exp/libeval.la \
1229 go/libast.la \ 1304 go/libast.la \
1230 go/libdoc.la \ 1305 go/libdoc.la \
1231 go/libparser.la \ 1306 go/libparser.la \
1232 go/libprinter.la \ 1307 go/libprinter.la \
1233 go/libscanner.la \ 1308 go/libscanner.la \
1234 go/libtoken.la \ 1309 go/libtoken.la \
1235 go/libtypechecker.la \ 1310 go/libtypechecker.la \
1236 hash/libadler32.la \ 1311 hash/libadler32.la \
1237 hash/libcrc32.la \ 1312 hash/libcrc32.la \
1238 hash/libcrc64.la \ 1313 hash/libcrc64.la \
1239 http/libpprof.la \ 1314 http/libpprof.la \
1240 image/libjpeg.la \ 1315 image/libjpeg.la \
1241 image/libpng.la \ 1316 image/libpng.la \
1242 index/libsuffixarray.la \ 1317 index/libsuffixarray.la \
1243 io/libioutil.la \ 1318 io/libioutil.la \
1244 mime/libmultipart.la \ 1319 mime/libmultipart.la \
1245 net/libdict.la \ 1320 net/libdict.la \
1246 net/libtextproto.la \ 1321 net/libtextproto.la \
1322 $(os_lib_inotify_la) \
1247 os/libsignal.la \ 1323 os/libsignal.la \
1248 rpc/libjsonrpc.la \ 1324 rpc/libjsonrpc.la \
1325 runtime/libdebug.la \
1249 runtime/libpprof.la \ 1326 runtime/libpprof.la \
1250 syscalls/libsyscall.la \ 1327 syscalls/libsyscall.la \
1251 testing/libtesting.la \ 1328 testing/libtesting.la \
1252 testing/libiotest.la \ 1329 testing/libiotest.la \
1253 testing/libquick.la \ 1330 testing/libquick.la \
1254 testing/libscript.la 1331 testing/libscript.la
1255 1332
1256 libgo_la_SOURCES = $(runtime_files) 1333 libgo_la_SOURCES = $(runtime_files)
1257 1334
1258 libgo_la_LIBADD = \ 1335 libgo_la_LIBADD = \
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 1488
1412 fmt/libfmt.a: $(go_fmt_files) bytes.gox io.gox os.gox reflect.gox strconv.gox \ 1489 fmt/libfmt.a: $(go_fmt_files) bytes.gox io.gox os.gox reflect.gox strconv.gox \
1413 strings.gox unicode.gox utf8.gox 1490 strings.gox unicode.gox utf8.gox
1414 $(BUILDARCHIVE) 1491 $(BUILDARCHIVE)
1415 fmt/libfmt.la: fmt/libfmt.a 1492 fmt/libfmt.la: fmt/libfmt.a
1416 fmt/check: $(CHECK_DEPS) 1493 fmt/check: $(CHECK_DEPS)
1417 $(CHECK) 1494 $(CHECK)
1418 .PHONY: fmt/check 1495 .PHONY: fmt/check
1419 1496
1420 gob/libgob.a: $(go_gob_files) bytes.gox fmt.gox io.gox math.gox os.gox \ 1497 gob/libgob.a: $(go_gob_files) bytes.gox fmt.gox io.gox math.gox os.gox \
1421 » » reflect.gox runtime.gox strings.gox sync.gox unicode.gox 1498 » » reflect.gox runtime.gox strings.gox sync.gox unicode.gox \
1499 » » utf8.gox
1422 $(BUILDARCHIVE) 1500 $(BUILDARCHIVE)
1423 gob/libgob.la: gob/libgob.a 1501 gob/libgob.la: gob/libgob.a
1424 gob/check: $(CHECK_DEPS) 1502 gob/check: $(CHECK_DEPS)
1425 $(CHECK) 1503 $(CHECK)
1426 .PHONY: gob/check 1504 .PHONY: gob/check
1427 1505
1428 hash/libhash.a: $(go_hash_files) io.gox 1506 hash/libhash.a: $(go_hash_files) io.gox
1429 $(BUILDARCHIVE) 1507 $(BUILDARCHIVE)
1430 hash/libhash.la: hash/libhash.a 1508 hash/libhash.la: hash/libhash.a
1431 hash/check: $(CHECK_DEPS) 1509 hash/check: $(CHECK_DEPS)
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 json/libjson.a: $(go_json_files) bytes.gox container/vector.gox fmt.gox \ 1546 json/libjson.a: $(go_json_files) bytes.gox container/vector.gox fmt.gox \
1469 io.gox math.gox os.gox reflect.gox runtime.gox strconv.gox \ 1547 io.gox math.gox os.gox reflect.gox runtime.gox strconv.gox \
1470 strings.gox unicode.gox utf16.gox utf8.gox 1548 strings.gox unicode.gox utf16.gox utf8.gox
1471 $(BUILDARCHIVE) 1549 $(BUILDARCHIVE)
1472 json/libjson.la: json/libjson.a 1550 json/libjson.la: json/libjson.a
1473 json/check: $(CHECK_DEPS) 1551 json/check: $(CHECK_DEPS)
1474 $(CHECK) 1552 $(CHECK)
1475 .PHONY: json/check 1553 .PHONY: json/check
1476 1554
1477 log/liblog.a: $(go_log_files) bytes.gox fmt.gox io.gox runtime.gox os.gox \ 1555 log/liblog.a: $(go_log_files) bytes.gox fmt.gox io.gox runtime.gox os.gox \
1478 » » time.gox 1556 » » sync.gox time.gox
1479 $(BUILDARCHIVE) 1557 $(BUILDARCHIVE)
1480 log/liblog.la: log/liblog.a 1558 log/liblog.la: log/liblog.a
1481 log/check: $(CHECK_DEPS) 1559 log/check: $(CHECK_DEPS)
1482 $(CHECK) 1560 $(CHECK)
1483 .PHONY: log/check 1561 .PHONY: log/check
1484 1562
1485 math/libmath.a: $(go_math_files) 1563 math/libmath.a: $(go_math_files)
1486 $(BUILDARCHIVE) 1564 $(BUILDARCHIVE)
1487 math/libmath.la: math/libmath.a 1565 math/libmath.la: math/libmath.a
1488 math/check: $(CHECK_DEPS) 1566 math/check: $(CHECK_DEPS)
1489 $(CHECK) 1567 $(CHECK)
1490 .PHONY: math/check 1568 .PHONY: math/check
1491 1569
1492 mime/libmime.a: $(go_mime_files) bufio.gox bytes.gox os.gox strings.gox \ 1570 mime/libmime.a: $(go_mime_files) bufio.gox bytes.gox os.gox strings.gox \
1493 sync.gox unicode.gox 1571 sync.gox unicode.gox
1494 $(BUILDARCHIVE) 1572 $(BUILDARCHIVE)
1495 mime/libmime.la: mime/libmime.a 1573 mime/libmime.la: mime/libmime.a
1496 mime/check: $(CHECK_DEPS) 1574 mime/check: $(CHECK_DEPS)
1497 $(CHECK) 1575 $(CHECK)
1498 .PHONY: mime/check 1576 .PHONY: mime/check
1499 1577
1500 net/libnet.a: $(go_net_files) fmt.gox io.gox os.gox reflect.gox strconv.gox \ 1578 net/libnet.a: $(go_net_files) bytes.gox fmt.gox io.gox os.gox reflect.gox \
1501 » » strings.gox sync.gox syscall.gox 1579 » » strconv.gox strings.gox sync.gox syscall.gox
1502 $(BUILDARCHIVE) 1580 $(BUILDARCHIVE)
1503 net/libnet.la: net/libnet.a 1581 net/libnet.la: net/libnet.a
1504 net/check: $(CHECK_DEPS) 1582 net/check: $(CHECK_DEPS)
1505 $(CHECK) 1583 $(CHECK)
1506 .PHONY: net/check 1584 .PHONY: net/check
1507 1585
1508 netchan/libnetchan.a: $(go_netchan_files) gob.gox log.gox net.gox os.gox \ 1586 netchan/libnetchan.a: $(go_netchan_files) gob.gox log.gox net.gox os.gox \
1509 » » reflect.gox sync.gox time.gox 1587 » » reflect.gox strconv.gox sync.gox time.gox
1510 $(BUILDARCHIVE) 1588 $(BUILDARCHIVE)
1511 netchan/libnetchan.la: netchan/libnetchan.a 1589 netchan/libnetchan.la: netchan/libnetchan.a
1512 netchan/check: $(CHECK_DEPS) 1590 netchan/check: $(CHECK_DEPS)
1513 $(CHECK) 1591 $(CHECK)
1514 .PHONY: netchan/check 1592 .PHONY: netchan/check
1515 1593
1516 os/libos.a: $(go_os_files) sync.gox syscall.gox 1594 os/libos.a: $(go_os_files) sync.gox syscall.gox
1517 $(BUILDARCHIVE) 1595 $(BUILDARCHIVE)
1518 os/libos.la: os/libos.a 1596 os/libos.la: os/libos.a
1519 os/check: $(CHECK_DEPS) 1597 os/check: $(CHECK_DEPS)
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1650 .PHONY: template/check 1728 .PHONY: template/check
1651 1729
1652 testing/libtesting.a: $(go_testing_files) flag.gox fmt.gox os.gox regexp.gox \ 1730 testing/libtesting.a: $(go_testing_files) flag.gox fmt.gox os.gox regexp.gox \
1653 runtime.gox time.gox 1731 runtime.gox time.gox
1654 $(BUILDARCHIVE) 1732 $(BUILDARCHIVE)
1655 testing/libtesting.la: testing/libtesting.a 1733 testing/libtesting.la: testing/libtesting.a
1656 testing/check: $(CHECK_DEPS) 1734 testing/check: $(CHECK_DEPS)
1657 $(CHECK) 1735 $(CHECK)
1658 .PHONY: testing/check 1736 .PHONY: testing/check
1659 1737
1660 time/libtime.a: $(go_time_files) bytes.gox io/ioutil.gox os.gox strconv.gox \ 1738 time/libtime.a: $(go_time_files) bytes.gox container/heap.gox io/ioutil.gox \
1661 » » sync.gox syscall.gox 1739 » » os.gox strconv.gox sync.gox syscall.gox
1662 $(BUILDARCHIVE) 1740 $(BUILDARCHIVE)
1663 time/libtime.la: time/libtime.a 1741 time/libtime.la: time/libtime.a
1664 time/check: $(CHECK_DEPS) 1742 time/check: $(CHECK_DEPS)
1665 $(CHECK) 1743 $(CHECK)
1666 .PHONY: time/check 1744 .PHONY: time/check
1667 1745
1668 try/libtry.a: $(go_try_files) fmt.gox io.gox os.gox reflect.gox unicode.gox 1746 try/libtry.a: $(go_try_files) fmt.gox io.gox os.gox reflect.gox unicode.gox
1669 $(BUILDARCHIVE) 1747 $(BUILDARCHIVE)
1670 try/libtry.la: try/libtry.a 1748 try/libtry.la: try/libtry.a
1671 try/check: $(CHECK_DEPS) 1749 try/check: $(CHECK_DEPS)
(...skipping 24 matching lines...) Expand all
1696 websocket/libwebsocket.a: $(go_websocket_files) bufio.gox bytes.gox \ 1774 websocket/libwebsocket.a: $(go_websocket_files) bufio.gox bytes.gox \
1697 container/vector.gox crypto/md5.gox crypto/tls.gox \ 1775 container/vector.gox crypto/md5.gox crypto/tls.gox \
1698 encoding/binary.gox fmt.gox http.gox io.gox net.gox os.gox \ 1776 encoding/binary.gox fmt.gox http.gox io.gox net.gox os.gox \
1699 rand.gox strings.gox 1777 rand.gox strings.gox
1700 $(BUILDARCHIVE) 1778 $(BUILDARCHIVE)
1701 websocket/libwebsocket.la: websocket/libwebsocket.a 1779 websocket/libwebsocket.la: websocket/libwebsocket.a
1702 websocket/check: $(CHECK_DEPS) 1780 websocket/check: $(CHECK_DEPS)
1703 $(CHECK) 1781 $(CHECK)
1704 .PHONY: websocket/check 1782 .PHONY: websocket/check
1705 1783
1706 xml/libxml.a: $(go_xml_files) bufio.gox bytes.gox io.gox os.gox reflect.gox \ 1784 xml/libxml.a: $(go_xml_files) bufio.gox bytes.gox fmt.gox io.gox os.gox \
1707 » » strconv.gox strings.gox unicode.gox utf8.gox 1785 » » reflect.gox strconv.gox strings.gox unicode.gox utf8.gox
1708 $(BUILDARCHIVE) 1786 $(BUILDARCHIVE)
1709 xml/libxml.la: xml/libxml.a 1787 xml/libxml.la: xml/libxml.a
1710 xml/check: $(CHECK_DEPS) 1788 xml/check: $(CHECK_DEPS)
1711 $(CHECK) 1789 $(CHECK)
1712 .PHONY: xml/check 1790 .PHONY: xml/check
1713 1791
1714 archive/libtar.a: $(go_archive_tar_files) bytes.gox io.gox os.gox strconv.gox \ 1792 archive/libtar.a: $(go_archive_tar_files) bytes.gox io.gox os.gox strconv.gox \
1715 strings.gox 1793 strings.gox
1716 $(BUILDARCHIVE) 1794 $(BUILDARCHIVE)
1717 archive/libtar.la: archive/libtar.a 1795 archive/libtar.la: archive/libtar.a
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1814 .PHONY: crypto/blowfish/check 1892 .PHONY: crypto/blowfish/check
1815 1893
1816 crypto/libcast5.a: $(go_crypto_cast5_files) os.gox 1894 crypto/libcast5.a: $(go_crypto_cast5_files) os.gox
1817 $(BUILDARCHIVE) 1895 $(BUILDARCHIVE)
1818 crypto/libcast5.la: crypto/libcast5.a 1896 crypto/libcast5.la: crypto/libcast5.a
1819 crypt/cast5/check: $(CHECK_DEPS) 1897 crypt/cast5/check: $(CHECK_DEPS)
1820 @$(MKDIR_P) crypto/cast5 1898 @$(MKDIR_P) crypto/cast5
1821 $(CHECK) 1899 $(CHECK)
1822 .PHONY: crypto/cast5/check 1900 .PHONY: crypto/cast5/check
1823 1901
1902 crypto/libcipher.a: $(go_crypto_cipher_files) io.gox os.gox
1903 $(BUILDARCHIVE)
1904 crypto/libcipher.la: crypto/libcipher.a
1905 crypto/cipher/check: $(CHECK_DEPS)
1906 @$(MKDIR_P) crypto/cipher
1907 $(CHECK)
1908 .PHONY: crypto/cipher/check
1909
1910 crypto/libelliptic.a: $(go_crypto_elliptic_files) big.gox io.gox os.gox \
1911 sync.gox
1912 $(BUILDARCHIVE)
1913 crypto/libelliptic.la: crypto/libelliptic.a
1914 crypto/elliptic/check: $(CHECK_DEPS)
1915 @$(MKDIR_P) crypto/elliptic
1916 $(CHECK)
1917 .PHONY: crypto/elliptic/check
1918
1824 crypto/libhmac.a: $(go_crypto_hmac_files) crypto/md5.gox crypto/sha1.gox \ 1919 crypto/libhmac.a: $(go_crypto_hmac_files) crypto/md5.gox crypto/sha1.gox \
1825 » » hash.gox os.gox 1920 » » crypto/sha256.gox hash.gox os.gox
1826 $(BUILDARCHIVE) 1921 $(BUILDARCHIVE)
1827 crypto/libhmac.la: crypto/libhmac.a 1922 crypto/libhmac.la: crypto/libhmac.a
1828 crypto/hmac/check: $(CHECK_DEPS) 1923 crypto/hmac/check: $(CHECK_DEPS)
1829 @$(MKDIR_P) crypto/hmac 1924 @$(MKDIR_P) crypto/hmac
1830 $(CHECK) 1925 $(CHECK)
1831 .PHONY: crypto/hmac/check 1926 .PHONY: crypto/hmac/check
1832 1927
1833 crypto/libmd4.a: $(go_crypto_md4_files) hash.gox os.gox 1928 crypto/libmd4.a: $(go_crypto_md4_files) hash.gox os.gox
1834 $(BUILDARCHIVE) 1929 $(BUILDARCHIVE)
1835 crypto/libmd4.la: crypto/libmd4.a 1930 crypto/libmd4.la: crypto/libmd4.a
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1914 .PHONY: crypto/sha512/check 2009 .PHONY: crypto/sha512/check
1915 2010
1916 crypto/libsubtle.a: $(go_crypto_subtle_files) 2011 crypto/libsubtle.a: $(go_crypto_subtle_files)
1917 $(BUILDARCHIVE) 2012 $(BUILDARCHIVE)
1918 crypto/libsubtle.la: crypto/libsubtle.a 2013 crypto/libsubtle.la: crypto/libsubtle.a
1919 crypto/subtle/check: $(CHECK_DEPS) 2014 crypto/subtle/check: $(CHECK_DEPS)
1920 @$(MKDIR_P) crypto/subtle 2015 @$(MKDIR_P) crypto/subtle
1921 $(CHECK) 2016 $(CHECK)
1922 .PHONY: crypto/subtle/check 2017 .PHONY: crypto/subtle/check
1923 2018
1924 crypto/libtls.a: $(go_crypto_tls_files) bufio.gox bytes.gox container/list.gox \ 2019 crypto/libtls.a: $(go_crypto_tls_files) big.gox bufio.gox bytes.gox \
1925 » » crypto/hmac.gox crypto/md5.gox crypto/rc4.gox crypto/rand.gox \ 2020 » » container/list.gox crypto/aes.gox crypto/cipher.gox \
1926 » » crypto/rsa.gox crypto/sha1.gox crypto/subtle.gox \ 2021 » » crypto/elliptic.gox crypto/hmac.gox crypto/md5.gox \
1927 » » crypto/rsa.gox crypto/x509.gox encoding/pem.gox fmt.gox \ 2022 » » crypto/rc4.gox crypto/rand.gox crypto/rsa.gox crypto/sha1.gox \
1928 » » hash.gox io.gox io/ioutil.gox net.gox os.gox strings.gox \ 2023 » » crypto/subtle.gox crypto/rsa.gox crypto/sha1.gox \
1929 » » sync.gox time.gox 2024 » » crypto/x509.gox encoding/pem.gox fmt.gox hash.gox io.gox \
2025 » » io/ioutil.gox net.gox os.gox strings.gox sync.gox time.gox
1930 $(BUILDARCHIVE) 2026 $(BUILDARCHIVE)
1931 crypto/libtls.la: crypto/libtls.a 2027 crypto/libtls.la: crypto/libtls.a
1932 crypto/tls/check: $(CHECK_DEPS) 2028 crypto/tls/check: $(CHECK_DEPS)
1933 @$(MKDIR_P) crypto/tls 2029 @$(MKDIR_P) crypto/tls
1934 $(CHECK) 2030 $(CHECK)
1935 .PHONY: crypto/tls/check 2031 .PHONY: crypto/tls/check
1936 2032
2033 crypto/libtwofish.a: $(go_crypto_twofish_files) os.gox strconv.gox
2034 $(BUILDARCHIVE)
2035 crypto/libtwofish.la: crypto/libtwofish.a
2036 crypto/twofish/check: $(CHECK_DEPS)
2037 @$(MKDIR_P) crypto/twofish
2038 $(CHECK)
2039 .PHONY: crypto/twofish/check
2040
1937 crypto/libx509.a: $(go_crypto_x509_files) asn1.gox big.gox \ 2041 crypto/libx509.a: $(go_crypto_x509_files) asn1.gox big.gox \
1938 container/vector.gox crypto/rsa.gox crypto/sha1.gox hash.gox \ 2042 container/vector.gox crypto/rsa.gox crypto/sha1.gox hash.gox \
1939 os.gox strings.gox time.gox 2043 os.gox strings.gox time.gox
1940 $(BUILDARCHIVE) 2044 $(BUILDARCHIVE)
1941 crypto/libx509.la: crypto/libx509.a 2045 crypto/libx509.la: crypto/libx509.a
1942 crypto/x509/check: $(CHECK_DEPS) 2046 crypto/x509/check: $(CHECK_DEPS)
1943 @$(MKDIR_P) crypto/x509 2047 @$(MKDIR_P) crypto/x509
1944 $(CHECK) 2048 $(CHECK)
1945 .PHONY: crypto/x509/check 2049 .PHONY: crypto/x509/check
1946 2050
1947 crypto/libxtea.a: $(go_crypto_xtea_files) os.gox strconv.gox 2051 crypto/libxtea.a: $(go_crypto_xtea_files) os.gox strconv.gox
1948 $(BUILDARCHIVE) 2052 $(BUILDARCHIVE)
1949 crypto/libxtea.la: crypto/libxtea.a 2053 crypto/libxtea.la: crypto/libxtea.a
1950 crypto/xtea/check: $(CHECK_DEPS) 2054 crypto/xtea/check: $(CHECK_DEPS)
1951 @$(MKDIR_P) crypto/xtea 2055 @$(MKDIR_P) crypto/xtea
1952 $(CHECK) 2056 $(CHECK)
1953 .PHONY: crypto/xtea/check 2057 .PHONY: crypto/xtea/check
1954 2058
2059 crypto/openpgp/libarmor.a: $(go_crypto_openpgp_armor_files) bytes.gox \
2060 crypto/openpgp/error.gox encoding/base64.gox \
2061 encoding/line.gox io.gox os.gox
2062 $(BUILDARCHIVE)
2063 crypto/openpgp/libarmor.la: crypto/openpgp/libarmor.a
2064 crypto/openpgp/armor/check: $(CHECK_DEPS)
2065 @$(MKDIR_P) crypto/openpgp/armor
2066 $(CHECK)
2067 .PHONY: crypto/openpgp/armor/check
2068
2069 crypto/openpgp/liberror.a: $(go_crypto_openpgp_error_files)
2070 $(BUILDARCHIVE)
2071 crypto/openpgp/liberror.la: crypto/openpgp/liberror.a
2072 crypto/openpgp/error/check: $(CHECK_DEPS)
2073 @$(MKDIR_P) crypto/openpgp/error
2074 $(CHECK)
2075 .PHONY: crypto/openpgp/error/check
2076
2077 crypto/openpgp/libs2k.a: $(go_crypto_openpgp_s2k_files) crypto/md5.gox \
2078 crypto/openpgp/error.gox crypto/ripemd160.gox crypto/sha1.gox \
2079 crypto/sha256.gox crypto/sha512.gox hash.gox io.gox os.gox
2080 $(BUILDARCHIVE)
2081 crypto/openpgp/libs2k.la: crypto/openpgp/libs2k.a
2082 crypto/openpgp/s2k/check: $(CHECK_DEPS)
2083 @$(MKDIR_P) crypto/openpgp/s2k
2084 $(CHECK)
2085 .PHONY: crypto/openpgp/s2k/check
2086
1955 debug/libdwarf.a: $(go_debug_dwarf_files) encoding/binary.gox os.gox \ 2087 debug/libdwarf.a: $(go_debug_dwarf_files) encoding/binary.gox os.gox \
1956 strconv.gox 2088 strconv.gox
1957 $(BUILDARCHIVE) 2089 $(BUILDARCHIVE)
1958 debug/libdwarf.la: debug/libdwarf.a 2090 debug/libdwarf.la: debug/libdwarf.a
1959 debug/dwarf/check: $(CHECK_DEPS) 2091 debug/dwarf/check: $(CHECK_DEPS)
1960 @$(MKDIR_P) debug/dwarf 2092 @$(MKDIR_P) debug/dwarf
1961 $(CHECK) 2093 $(CHECK)
1962 .PHONY: debug/dwarf/check 2094 .PHONY: debug/dwarf/check
1963 2095
1964 debug/libelf.a: $(go_debug_elf_files) bytes.gox debug/dwarf.gox \ 2096 debug/libelf.a: $(go_debug_elf_files) bytes.gox debug/dwarf.gox \
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
2008 .PHONY: debug/proc/check 2140 .PHONY: debug/proc/check
2009 2141
2010 encoding/libascii85.a: $(go_encoding_ascii85_files) io.gox os.gox strconv.gox 2142 encoding/libascii85.a: $(go_encoding_ascii85_files) io.gox os.gox strconv.gox
2011 $(BUILDARCHIVE) 2143 $(BUILDARCHIVE)
2012 encoding/libascii85.la: encoding/libascii85.a 2144 encoding/libascii85.la: encoding/libascii85.a
2013 encoding/ascii85/check: $(CHECK_DEPS) 2145 encoding/ascii85/check: $(CHECK_DEPS)
2014 @$(MKDIR_P) encoding/ascii85 2146 @$(MKDIR_P) encoding/ascii85
2015 $(CHECK) 2147 $(CHECK)
2016 .PHONY: encoding/ascii85/check 2148 .PHONY: encoding/ascii85/check
2017 2149
2150 encoding/libbase32.a: $(go_encoding_base32_files) io.gox os.gox strconv.gox
2151 $(BUILDARCHIVE)
2152 encoding/libbase32.la: encoding/libbase32.a
2153 encoding/base32/check: $(CHECK_DEPS)
2154 @$(MKDIR_P) encoding/base32
2155 $(CHECK)
2156 .PHONY: encoding/base32/check
2157
2018 encoding/libbase64.a: $(go_encoding_base64_files) io.gox os.gox strconv.gox 2158 encoding/libbase64.a: $(go_encoding_base64_files) io.gox os.gox strconv.gox
2019 $(BUILDARCHIVE) 2159 $(BUILDARCHIVE)
2020 encoding/libbase64.la: encoding/libbase64.a 2160 encoding/libbase64.la: encoding/libbase64.a
2021 encoding/base64/check: $(CHECK_DEPS) 2161 encoding/base64/check: $(CHECK_DEPS)
2022 @$(MKDIR_P) encoding/base64 2162 @$(MKDIR_P) encoding/base64
2023 $(CHECK) 2163 $(CHECK)
2024 .PHONY: encoding/base64/check 2164 .PHONY: encoding/base64/check
2025 2165
2026 encoding/libbinary.a: $(go_encoding_binary_files) io.gox math.gox os.gox \ 2166 encoding/libbinary.a: $(go_encoding_binary_files) io.gox math.gox os.gox \
2027 reflect.gox 2167 reflect.gox
(...skipping 14 matching lines...) Expand all
2042 .PHONY: encoding/git85/check 2182 .PHONY: encoding/git85/check
2043 2183
2044 encoding/libhex.a: $(go_encoding_hex_files) os.gox strconv.gox 2184 encoding/libhex.a: $(go_encoding_hex_files) os.gox strconv.gox
2045 $(BUILDARCHIVE) 2185 $(BUILDARCHIVE)
2046 encoding/libhex.la: encoding/libhex.a 2186 encoding/libhex.la: encoding/libhex.a
2047 encoding/hex/check: $(CHECK_DEPS) 2187 encoding/hex/check: $(CHECK_DEPS)
2048 @$(MKDIR_P) encoding/hex 2188 @$(MKDIR_P) encoding/hex
2049 $(CHECK) 2189 $(CHECK)
2050 .PHONY: encoding/hex/check 2190 .PHONY: encoding/hex/check
2051 2191
2192 encoding/libline.a: $(go_encoding_line_files) io.gox os.gox
2193 $(BUILDARCHIVE)
2194 encoding/libline.la: encoding/libline.a
2195 encoding/line/check: $(CHECK_DEPS)
2196 @$(MKDIR_P) encoding/line
2197 $(CHECK)
2198 .PHONY: encoding/line/check
2199
2052 encoding/libpem.a: $(go_encoding_pem_files) bytes.gox encoding/base64.gox 2200 encoding/libpem.a: $(go_encoding_pem_files) bytes.gox encoding/base64.gox
2053 $(BUILDARCHIVE) 2201 $(BUILDARCHIVE)
2054 encoding/libpem.la: encoding/libpem.a 2202 encoding/libpem.la: encoding/libpem.a
2055 encoding/pem/check: $(CHECK_DEPS) 2203 encoding/pem/check: $(CHECK_DEPS)
2056 @$(MKDIR_P) encoding/pem 2204 @$(MKDIR_P) encoding/pem
2057 $(CHECK) 2205 $(CHECK)
2058 .PHONY: encoding/pem/check 2206 .PHONY: encoding/pem/check
2059 2207
2060 exp/libdatafmt.a: $(go_exp_datafmt_files) bytes.gox container/vector.gox \ 2208 exp/libdatafmt.a: $(go_exp_datafmt_files) bytes.gox container/vector.gox \
2061 fmt.gox go/scanner.gox go/token.gox io.gox os.gox reflect.gox \ 2209 fmt.gox go/scanner.gox go/token.gox io.gox os.gox reflect.gox \
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
2193 2341
2194 image/libpng.a: $(go_image_png_files) bufio.gox compress/zlib.gox fmt.gox \ 2342 image/libpng.a: $(go_image_png_files) bufio.gox compress/zlib.gox fmt.gox \
2195 hash.gox hash/crc32.gox image.gox io.gox os.gox strconv.gox 2343 hash.gox hash/crc32.gox image.gox io.gox os.gox strconv.gox
2196 $(BUILDARCHIVE) 2344 $(BUILDARCHIVE)
2197 image/libpng.la: image/libpng.a 2345 image/libpng.la: image/libpng.a
2198 image/png/check: $(CHECK_DEPS) 2346 image/png/check: $(CHECK_DEPS)
2199 @$(MKDIR_P) image/png 2347 @$(MKDIR_P) image/png
2200 $(CHECK) 2348 $(CHECK)
2201 .PHONY: image/png/check 2349 .PHONY: image/png/check
2202 2350
2203 index/libsuffixarray.a: $(go_index_suffixarray_files) bytes.gox \ 2351 index/libsuffixarray.a: $(go_index_suffixarray_files) bytes.gox regexp.gox \
2204 » » container/vector.gox sort.gox 2352 » » sort.gox
2205 $(BUILDARCHIVE) 2353 $(BUILDARCHIVE)
2206 index/libsuffixarray.la: index/libsuffixarray.a 2354 index/libsuffixarray.la: index/libsuffixarray.a
2207 index/suffixarray/check: $(CHECK_DEPS) 2355 index/suffixarray/check: $(CHECK_DEPS)
2208 @$(MKDIR_P) index/suffixarray 2356 @$(MKDIR_P) index/suffixarray
2209 $(CHECK) 2357 $(CHECK)
2210 .PHONY: index/suffixarray/check 2358 .PHONY: index/suffixarray/check
2211 2359
2212 io/libioutil.a: $(go_io_ioutil_files) bytes.gox io.gox os.gox sort.gox \ 2360 io/libioutil.a: $(go_io_ioutil_files) bytes.gox io.gox os.gox sort.gox \
2213 strconv.gox 2361 strconv.gox
2214 $(BUILDARCHIVE) 2362 $(BUILDARCHIVE)
(...skipping 20 matching lines...) Expand all
2235 net/libtextproto.a: $(go_net_textproto_files) bufio.gox bytes.gox \ 2383 net/libtextproto.a: $(go_net_textproto_files) bufio.gox bytes.gox \
2236 container/vector.gox fmt.gox io.gox io/ioutil.gox net.gox \ 2384 container/vector.gox fmt.gox io.gox io/ioutil.gox net.gox \
2237 os.gox strconv.gox sync.gox 2385 os.gox strconv.gox sync.gox
2238 $(BUILDARCHIVE) 2386 $(BUILDARCHIVE)
2239 net/libtextproto.la: net/libtextproto.a 2387 net/libtextproto.la: net/libtextproto.a
2240 net/textproto/check: $(CHECK_DEPS) 2388 net/textproto/check: $(CHECK_DEPS)
2241 @$(MKDIR_P) net/textproto 2389 @$(MKDIR_P) net/textproto
2242 $(CHECK) 2390 $(CHECK)
2243 .PHONY: net/textproto/check 2391 .PHONY: net/textproto/check
2244 2392
2393 os/libinotify.a: $(go_os_inotify_files) fmt.gox os.gox strings.gox \
2394 syscall.gox
2395 $(BUILDARCHIVE)
2396 os/libinotify.la: os/libinotify.a
2397 os/inotify/check: $(CHECK_DEPS)
2398 @$(MKDIR_P) os/inotify
2399 $(CHECK)
2400 .PHONY: os/inotify/check
2401
2245 os/libsignal.a: $(go_os_signal_files) runtime.gox strconv.gox 2402 os/libsignal.a: $(go_os_signal_files) runtime.gox strconv.gox
2246 $(BUILDARCHIVE) 2403 $(BUILDARCHIVE)
2247 os/libsignal.la: os/libsignal.a 2404 os/libsignal.la: os/libsignal.a
2248 os/signal/check: $(CHECK_DEPS) 2405 os/signal/check: $(CHECK_DEPS)
2249 @$(MKDIR_P) os/signal 2406 @$(MKDIR_P) os/signal
2250 $(CHECK) 2407 $(CHECK)
2251 .PHONY: os/signal/check 2408 .PHONY: os/signal/check
2252 2409
2253 unix.go: $(srcdir)/go/os/signal/mkunix.sh sysinfo.go 2410 unix.go: $(srcdir)/go/os/signal/mkunix.sh sysinfo.go
2254 $(SHELL) $(srcdir)/go/os/signal/mkunix.sh sysinfo.go > $@.tmp 2411 $(SHELL) $(srcdir)/go/os/signal/mkunix.sh sysinfo.go > $@.tmp
2255 mv -f $@.tmp $@ 2412 mv -f $@.tmp $@
2256 2413
2257 rpc/libjsonrpc.a: $(go_rpc_jsonrpc_files) fmt.gox io.gox json.gox net.gox \ 2414 rpc/libjsonrpc.a: $(go_rpc_jsonrpc_files) fmt.gox io.gox json.gox net.gox \
2258 os.gox rpc.gox sync.gox 2415 os.gox rpc.gox sync.gox
2259 $(BUILDARCHIVE) 2416 $(BUILDARCHIVE)
2260 rpc/libjsonrpc.la: rpc/libjsonrpc.a 2417 rpc/libjsonrpc.la: rpc/libjsonrpc.a
2261 rpc/jsonrpc/check: $(CHECK_DEPS) 2418 rpc/jsonrpc/check: $(CHECK_DEPS)
2262 @$(MKDIR_P) rpc/jsonrpc 2419 @$(MKDIR_P) rpc/jsonrpc
2263 $(CHECK) 2420 $(CHECK)
2264 .PHONY: rpc/jsonrpc/check 2421 .PHONY: rpc/jsonrpc/check
2265 2422
2423 runtime/libdebug.a: $(go_runtime_debug_files) bytes.gox fmt.gox io/ioutil.gox \
2424 os.gox runtime.gox
2425 $(BUILDARCHIVE)
2426 runtime/libdebug.la: runtime/libdebug.a
2427 runtime/debug/check: $(CHECK_DEPS)
2428 @$(MKDIR_P) runtime/debug
2429 $(CHECK)
2430 .PHONY: runtime/debug/check
2431
2266 runtime/libpprof.a: $(go_runtime_pprof_files) bufio.gox fmt.gox io.gox os.gox \ 2432 runtime/libpprof.a: $(go_runtime_pprof_files) bufio.gox fmt.gox io.gox os.gox \
2267 runtime.gox 2433 runtime.gox
2268 $(BUILDARCHIVE) 2434 $(BUILDARCHIVE)
2269 runtime/libpprof.la: runtime/libpprof.a 2435 runtime/libpprof.la: runtime/libpprof.a
2270 runtime/pprof/check: $(CHECK_DEPS) 2436 runtime/pprof/check: $(CHECK_DEPS)
2271 @$(MKDIR_P) runtime/pprof 2437 @$(MKDIR_P) runtime/pprof
2272 $(CHECK) 2438 $(CHECK)
2273 .PHONY: runtime/pprof/check 2439 .PHONY: runtime/pprof/check
2274 2440
2275 testing/libiotest.a: $(go_testing_iotest_files) io.gox log.gox os.gox 2441 testing/libiotest.a: $(go_testing_iotest_files) io.gox log.gox os.gox
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
2438 $(BUILDGOX) 2604 $(BUILDGOX)
2439 2605
2440 crypto/aes.gox: crypto/libaes.a 2606 crypto/aes.gox: crypto/libaes.a
2441 $(BUILDGOX) 2607 $(BUILDGOX)
2442 crypto/block.gox: crypto/libblock.a 2608 crypto/block.gox: crypto/libblock.a
2443 $(BUILDGOX) 2609 $(BUILDGOX)
2444 crypto/blowfish.gox: crypto/libblowfish.a 2610 crypto/blowfish.gox: crypto/libblowfish.a
2445 $(BUILDGOX) 2611 $(BUILDGOX)
2446 crypto/cast5.gox: crypto/libcast5.a 2612 crypto/cast5.gox: crypto/libcast5.a
2447 $(BUILDGOX) 2613 $(BUILDGOX)
2614 crypto/cipher.gox: crypto/libcipher.a
2615 $(BUILDGOX)
2616 crypto/elliptic.gox: crypto/libelliptic.a
2617 $(BUILDGOX)
2448 crypto/hmac.gox: crypto/libhmac.a 2618 crypto/hmac.gox: crypto/libhmac.a
2449 $(BUILDGOX) 2619 $(BUILDGOX)
2450 crypto/md4.gox: crypto/libmd4.a 2620 crypto/md4.gox: crypto/libmd4.a
2451 $(BUILDGOX) 2621 $(BUILDGOX)
2452 crypto/md5.gox: crypto/libmd5.a 2622 crypto/md5.gox: crypto/libmd5.a
2453 $(BUILDGOX) 2623 $(BUILDGOX)
2454 crypto/ocsp.gox: crypto/libocsp.a 2624 crypto/ocsp.gox: crypto/libocsp.a
2455 $(BUILDGOX) 2625 $(BUILDGOX)
2456 crypto/rand.gox: crypto/librand.a 2626 crypto/rand.gox: crypto/librand.a
2457 $(BUILDGOX) 2627 $(BUILDGOX)
2458 crypto/rc4.gox: crypto/librc4.a 2628 crypto/rc4.gox: crypto/librc4.a
2459 $(BUILDGOX) 2629 $(BUILDGOX)
2460 crypto/ripemd160.gox: crypto/libripemd160.a 2630 crypto/ripemd160.gox: crypto/libripemd160.a
2461 $(BUILDGOX) 2631 $(BUILDGOX)
2462 crypto/rsa.gox: crypto/librsa.a 2632 crypto/rsa.gox: crypto/librsa.a
2463 $(BUILDGOX) 2633 $(BUILDGOX)
2464 crypto/sha1.gox: crypto/libsha1.a 2634 crypto/sha1.gox: crypto/libsha1.a
2465 $(BUILDGOX) 2635 $(BUILDGOX)
2466 crypto/sha256.gox: crypto/libsha256.a 2636 crypto/sha256.gox: crypto/libsha256.a
2467 $(BUILDGOX) 2637 $(BUILDGOX)
2468 crypto/sha512.gox: crypto/libsha512.a 2638 crypto/sha512.gox: crypto/libsha512.a
2469 $(BUILDGOX) 2639 $(BUILDGOX)
2470 crypto/subtle.gox: crypto/libsubtle.a 2640 crypto/subtle.gox: crypto/libsubtle.a
2471 $(BUILDGOX) 2641 $(BUILDGOX)
2472 crypto/tls.gox: crypto/libtls.a 2642 crypto/tls.gox: crypto/libtls.a
2473 $(BUILDGOX) 2643 $(BUILDGOX)
2644 crypto/twofish.gox: crypto/libtwofish.a
2645 $(BUILDGOX)
2474 crypto/x509.gox: crypto/libx509.a 2646 crypto/x509.gox: crypto/libx509.a
2475 $(BUILDGOX) 2647 $(BUILDGOX)
2476 crypto/xtea.gox: crypto/libxtea.a 2648 crypto/xtea.gox: crypto/libxtea.a
2477 $(BUILDGOX) 2649 $(BUILDGOX)
2478 2650
2651 crypto/openpgp/armor.gox: crypto/openpgp/libarmor.a
2652 $(BUILDGOX)
2653 crypto/openpgp/error.gox: crypto/openpgp/liberror.a
2654 $(BUILDGOX)
2655 crypto/openpgp/s2k.gox: crypto/openpgp/libs2k.a
2656 $(BUILDGOX)
2657
2479 debug/dwarf.gox: debug/libdwarf.a 2658 debug/dwarf.gox: debug/libdwarf.a
2480 $(BUILDGOX) 2659 $(BUILDGOX)
2481 debug/elf.gox: debug/libelf.a 2660 debug/elf.gox: debug/libelf.a
2482 $(BUILDGOX) 2661 $(BUILDGOX)
2483 debug/gosym.gox: debug/libgosym.a 2662 debug/gosym.gox: debug/libgosym.a
2484 $(BUILDGOX) 2663 $(BUILDGOX)
2485 debug/macho.gox: debug/libmacho.a 2664 debug/macho.gox: debug/libmacho.a
2486 $(BUILDGOX) 2665 $(BUILDGOX)
2487 debug/pe.gox: debug/libpe.a 2666 debug/pe.gox: debug/libpe.a
2488 $(BUILDGOX) 2667 $(BUILDGOX)
2489 debug/proc.gox: debug/libproc.a 2668 debug/proc.gox: debug/libproc.a
2490 $(BUILDGOX) 2669 $(BUILDGOX)
2491 2670
2492 encoding/ascii85.gox: encoding/libascii85.a 2671 encoding/ascii85.gox: encoding/libascii85.a
2493 $(BUILDGOX) 2672 $(BUILDGOX)
2673 encoding/base32.gox: encoding/libbase32.a
2674 $(BUILDGOX)
2494 encoding/base64.gox: encoding/libbase64.a 2675 encoding/base64.gox: encoding/libbase64.a
2495 $(BUILDGOX) 2676 $(BUILDGOX)
2496 encoding/binary.gox: encoding/libbinary.a 2677 encoding/binary.gox: encoding/libbinary.a
2497 $(BUILDGOX) 2678 $(BUILDGOX)
2498 encoding/git85.gox: encoding/libgit85.a 2679 encoding/git85.gox: encoding/libgit85.a
2499 $(BUILDGOX) 2680 $(BUILDGOX)
2500 encoding/hex.gox: encoding/libhex.a 2681 encoding/hex.gox: encoding/libhex.a
2501 $(BUILDGOX) 2682 $(BUILDGOX)
2683 encoding/line.gox: encoding/libline.a
2684 $(BUILDGOX)
2502 encoding/pem.gox: encoding/libpem.a 2685 encoding/pem.gox: encoding/libpem.a
2503 $(BUILDGOX) 2686 $(BUILDGOX)
2504 2687
2505 exp/datafmt.gox: exp/libdatafmt.a 2688 exp/datafmt.gox: exp/libdatafmt.a
2506 $(BUILDGOX) 2689 $(BUILDGOX)
2507 exp/draw.gox: exp/libdraw.a 2690 exp/draw.gox: exp/libdraw.a
2508 $(BUILDGOX) 2691 $(BUILDGOX)
2509 exp/eval.gox: exp/libeval.a 2692 exp/eval.gox: exp/libeval.a
2510 $(BUILDGOX) 2693 $(BUILDGOX)
2511 2694
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
2546 $(BUILDGOX) 2729 $(BUILDGOX)
2547 2730
2548 mime/multipart.gox: mime/libmultipart.a 2731 mime/multipart.gox: mime/libmultipart.a
2549 $(BUILDGOX) 2732 $(BUILDGOX)
2550 2733
2551 net/dict.gox: net/libdict.a 2734 net/dict.gox: net/libdict.a
2552 $(BUILDGOX) 2735 $(BUILDGOX)
2553 net/textproto.gox: net/libtextproto.a 2736 net/textproto.gox: net/libtextproto.a
2554 $(BUILDGOX) 2737 $(BUILDGOX)
2555 2738
2739 os/inotify.gox: os/libinotify.a
2740 $(BUILDGOX)
2556 os/signal.gox: os/libsignal.a 2741 os/signal.gox: os/libsignal.a
2557 $(BUILDGOX) 2742 $(BUILDGOX)
2558 2743
2559 rpc/jsonrpc.gox: rpc/libjsonrpc.a 2744 rpc/jsonrpc.gox: rpc/libjsonrpc.a
2560 $(BUILDGOX) 2745 $(BUILDGOX)
2561 2746
2747 runtime/debug.gox: runtime/libdebug.a
2748 $(BUILDGOX)
2562 runtime/pprof.gox: runtime/libpprof.a 2749 runtime/pprof.gox: runtime/libpprof.a
2563 $(BUILDGOX) 2750 $(BUILDGOX)
2564 2751
2565 testing/iotest.gox: testing/libiotest.a 2752 testing/iotest.gox: testing/libiotest.a
2566 $(BUILDGOX) 2753 $(BUILDGOX)
2567 testing/quick.gox: testing/libquick.a 2754 testing/quick.gox: testing/libquick.a
2568 $(BUILDGOX) 2755 $(BUILDGOX)
2569 testing/script.gox: testing/libscript.a 2756 testing/script.gox: testing/libscript.a
2570 $(BUILDGOX) 2757 $(BUILDGOX)
2571 2758
2759 if LIBGO_IS_LINUX
2760 # os_inotify_check = os/inotify/check
2761 os_inotify_check =
2762 else
2763 os_inotify_check =
2764 endif
2765
2572 TEST_PACKAGES = \ 2766 TEST_PACKAGES = \
2573 asn1/check \ 2767 asn1/check \
2574 big/check \ 2768 big/check \
2575 bufio/check \ 2769 bufio/check \
2576 bytes/check \ 2770 bytes/check \
2577 cmath/check \ 2771 cmath/check \
2578 ebnf/check \ 2772 ebnf/check \
2579 exec/check \ 2773 exec/check \
2580 expvar/check \ 2774 expvar/check \
2581 flag/check \ 2775 flag/check \
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
2620 compress/gzip/check \ 2814 compress/gzip/check \
2621 compress/zlib/check \ 2815 compress/zlib/check \
2622 container/heap/check \ 2816 container/heap/check \
2623 container/list/check \ 2817 container/list/check \
2624 container/ring/check \ 2818 container/ring/check \
2625 container/vector/check \ 2819 container/vector/check \
2626 crypto/aes/check \ 2820 crypto/aes/check \
2627 crypto/block/check \ 2821 crypto/block/check \
2628 crypto/blowfish/check \ 2822 crypto/blowfish/check \
2629 crypto/cast5/check \ 2823 crypto/cast5/check \
2824 crypto/cipher/check \
2825 crypto/elliptic/check \
2630 crypto/hmac/check \ 2826 crypto/hmac/check \
2631 crypto/md4/check \ 2827 crypto/md4/check \
2632 crypto/md5/check \ 2828 crypto/md5/check \
2633 crypto/ocsp/check \ 2829 crypto/ocsp/check \
2634 crypto/rand/check \ 2830 crypto/rand/check \
2635 crypto/rc4/check \ 2831 crypto/rc4/check \
2636 crypto/ripemd160/check \ 2832 crypto/ripemd160/check \
2637 crypto/rsa/check \ 2833 crypto/rsa/check \
2638 crypto/sha1/check \ 2834 crypto/sha1/check \
2639 crypto/sha256/check \ 2835 crypto/sha256/check \
2640 crypto/sha512/check \ 2836 crypto/sha512/check \
2641 crypto/subtle/check \ 2837 crypto/subtle/check \
2642 crypto/tls/check \ 2838 crypto/tls/check \
2839 crypto/twofish/check \
2643 crypto/x509/check \ 2840 crypto/x509/check \
2644 crypto/xtea/check \ 2841 crypto/xtea/check \
2842 crypto/openpgp/armor/check \
2843 crypto/openpgp/s2k/check \
2645 debug/dwarf/check \ 2844 debug/dwarf/check \
2646 debug/elf/check \ 2845 debug/elf/check \
2647 debug/macho/check \ 2846 debug/macho/check \
2648 debug/pe/check \ 2847 debug/pe/check \
2649 encoding/ascii85/check \ 2848 encoding/ascii85/check \
2849 encoding/base32/check \
2650 encoding/base64/check \ 2850 encoding/base64/check \
2651 encoding/binary/check \ 2851 encoding/binary/check \
2652 encoding/git85/check \ 2852 encoding/git85/check \
2653 encoding/hex/check \ 2853 encoding/hex/check \
2854 encoding/line/check \
2654 encoding/pem/check \ 2855 encoding/pem/check \
2655 exp/datafmt/check \ 2856 exp/datafmt/check \
2656 exp/draw/check \ 2857 exp/draw/check \
2657 exp/eval/check \ 2858 exp/eval/check \
2658 go/parser/check \ 2859 go/parser/check \
2659 go/printer/check \ 2860 go/printer/check \
2660 go/scanner/check \ 2861 go/scanner/check \
2862 go/token/check \
2661 go/typechecker/check \ 2863 go/typechecker/check \
2662 hash/adler32/check \ 2864 hash/adler32/check \
2663 hash/crc32/check \ 2865 hash/crc32/check \
2664 hash/crc64/check \ 2866 hash/crc64/check \
2665 image/png/check \ 2867 image/png/check \
2666 index/suffixarray/check \ 2868 index/suffixarray/check \
2667 io/ioutil/check \ 2869 io/ioutil/check \
2668 mime/multipart/check \ 2870 mime/multipart/check \
2669 net/textproto/check \ 2871 net/textproto/check \
2872 $(os_inotify_check) \
2670 os/signal/check \ 2873 os/signal/check \
2671 rpc/jsonrpc/check \ 2874 rpc/jsonrpc/check \
2672 testing/quick/check \ 2875 testing/quick/check \
2673 testing/script/check 2876 testing/script/check
2674 2877
2675 check-recursive: $(TEST_PACKAGES) 2878 check-recursive: $(TEST_PACKAGES)
2676 2879
2677 mostlyclean-local: 2880 mostlyclean-local:
2678 find . -name '*.lo' -print | xargs $(LIBTOOL) --mode=clean rm -f 2881 find . -name '*.lo' -print | xargs $(LIBTOOL) --mode=clean rm -f
2679 find . -name '*.$(OBJEXT)' -print | xargs rm -f 2882 find . -name '*.$(OBJEXT)' -print | xargs rm -f
2680 2883
2681 clean-local: 2884 clean-local:
2682 find . -name '*.la' -print | xargs $(LIBTOOL) --mode=clean rm -f 2885 find . -name '*.la' -print | xargs $(LIBTOOL) --mode=clean rm -f
2683 find . -name '*.a' -print | xargs rm -f 2886 find . -name '*.a' -print | xargs rm -f
2684 2887
2685 CLEANFILES = *.go *.gox goc2c *.c s-version 2888 CLEANFILES = *.go *.gox goc2c *.c s-version
OLDNEW
« no previous file with comments | « libgo/MERGE ('k') | libgo/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b