aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@golang.org>2010-08-19 16:33:58 -0400
committerAdam Langley <agl@golang.org>2010-08-19 16:33:58 -0400
commit4abfc4fff00aeecc9763a81781271bb31faf6903 (patch)
tree5d6148525fd5828d9d5e72c78d63b719570b7dc9
parent3112bb0727d95d4f6765d808453c363c8d9f43ec (diff)
downloadgo-4abfc4fff00aeecc9763a81781271bb31faf6903.tar.xz
crypto/ocsp: add missing Makefile
R=rsc CC=golang-dev https://golang.org/cl/2018041
-rw-r--r--src/pkg/Makefile1
-rw-r--r--src/pkg/crypto/ocsp/Makefile11
2 files changed, 12 insertions, 0 deletions
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