aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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