From: Adam Langley Date: Thu, 19 Aug 2010 20:33:58 +0000 (-0400) Subject: crypto/ocsp: add missing Makefile X-Git-Tag: weekly.2010-08-25~27 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4abfc4fff00aeecc9763a81781271bb31faf6903;p=gostls13.git crypto/ocsp: add missing Makefile R=rsc CC=golang-dev https://golang.org/cl/2018041 --- diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 5c4bbadb10..c544078a82 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -39,6 +39,7 @@ DIRS=\ crypto/hmac\ crypto/md4\ crypto/md5\ + crypto/ocsp\ crypto/rand\ crypto/rc4\ crypto/ripemd160\ diff --git a/src/pkg/crypto/ocsp/Makefile b/src/pkg/crypto/ocsp/Makefile new file mode 100644 index 0000000000..6e132ff9b0 --- /dev/null +++ b/src/pkg/crypto/ocsp/Makefile @@ -0,0 +1,11 @@ +# 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. + +include ../../../Make.inc + +TARG=crypto/ocsp +GOFILES=\ + ocsp.go\ + +include ../../../Make.pkg