2009-11-06 00:43:29 +00:00
|
|
|
# Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
2010-08-18 15:08:49 +01:00
|
|
|
include ../../../Make.inc
|
2009-11-06 00:43:29 +00:00
|
|
|
|
|
|
|
TARG=crypto/tls
|
|
|
|
GOFILES=\
|
|
|
|
alert.go\
|
2010-12-15 16:49:55 +00:00
|
|
|
cipher_suites.go\
|
2009-11-06 00:43:29 +00:00
|
|
|
common.go\
|
2010-04-27 06:19:04 +01:00
|
|
|
conn.go\
|
2009-11-21 23:53:03 +00:00
|
|
|
handshake_client.go\
|
2009-11-06 00:43:29 +00:00
|
|
|
handshake_messages.go\
|
|
|
|
handshake_server.go\
|
2010-12-16 22:10:50 +00:00
|
|
|
key_agreement.go\
|
2009-11-06 00:43:29 +00:00
|
|
|
prf.go\
|
|
|
|
tls.go\
|
|
|
|
|
2011-10-13 18:59:13 +01:00
|
|
|
ifeq ($(CGO_ENABLED),1)
|
|
|
|
CGOFILES_darwin=\
|
|
|
|
root_darwin.go
|
|
|
|
else
|
|
|
|
GOFILES_darwin+=root_stub.go
|
|
|
|
endif
|
|
|
|
|
|
|
|
GOFILES_freebsd+=root_unix.go
|
|
|
|
GOFILES_linux+=root_unix.go
|
2011-12-12 20:42:06 +00:00
|
|
|
GOFILES_netbsd+=root_unix.go
|
2011-10-13 18:59:13 +01:00
|
|
|
GOFILES_openbsd+=root_unix.go
|
|
|
|
GOFILES_plan9+=root_stub.go
|
2011-10-14 03:58:19 +01:00
|
|
|
GOFILES_windows+=root_windows.go
|
2011-10-13 18:59:13 +01:00
|
|
|
|
|
|
|
GOFILES+=$(GOFILES_$(GOOS))
|
|
|
|
ifneq ($(CGOFILES_$(GOOS)),)
|
|
|
|
CGOFILES+=$(CGOFILES_$(GOOS))
|
|
|
|
endif
|
|
|
|
|
2009-11-24 01:32:51 +00:00
|
|
|
include ../../../Make.pkg
|