]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/ocsp: add missing Makefile
authorAdam Langley <agl@golang.org>
Thu, 19 Aug 2010 20:33:58 +0000 (16:33 -0400)
committerAdam Langley <agl@golang.org>
Thu, 19 Aug 2010 20:33:58 +0000 (16:33 -0400)
R=rsc
CC=golang-dev
https://golang.org/cl/2018041

src/pkg/Makefile
src/pkg/crypto/ocsp/Makefile [new file with mode: 0644]

index 5c4bbadb10b427371bb183a16a1edc77cd95ca96..c544078a82b26a934256a3f1617986faa78b19a2 100644 (file)
@@ -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 (file)
index 0000000..6e132ff
--- /dev/null
@@ -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