1
0
mirror of https://github.com/golang/go synced 2024-11-25 02:07:58 -07:00

crypto/ocsp: add missing Makefile

R=rsc
CC=golang-dev
https://golang.org/cl/2018041
This commit is contained in:
Adam Langley 2010-08-19 16:33:58 -04:00
parent 3112bb0727
commit 4abfc4fff0
2 changed files with 12 additions and 0 deletions

View File

@ -39,6 +39,7 @@ DIRS=\
crypto/hmac\
crypto/md4\
crypto/md5\
crypto/ocsp\
crypto/rand\
crypto/rc4\
crypto/ripemd160\

View File

@ -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