1
0
mirror of https://github.com/golang/go synced 2024-11-18 19:14:40 -07:00

add crypto/hmac to makefile

R=rsc
DELTA=4  (3 added, 0 deleted, 1 changed)
OCL=29314
CL=29314
This commit is contained in:
Rob Pike 2009-05-23 13:53:36 -07:00
parent b3de351681
commit 368b42103e
3 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@ bufio.install: io.install os.install utf8.install
container/vector.install:
crypto/aes.install: os.install
crypto/block.install: fmt.install io.install os.install
crypto/hmac.install: crypto/md5.install crypto/sha1.install hash.install os.install
crypto/md5.install: hash.install os.install
crypto/sha1.install: hash.install os.install
exec.install: os.install strings.install

View File

@ -19,6 +19,7 @@ DIRS=\
container/vector\
crypto/aes\
crypto/block\
crypto/hmac\
crypto/md5\
crypto/sha1\
exec\

View File

@ -28,4 +28,5 @@ for dir in $dirs; do (
echo $dir.install: $deps
) done > $TMP
p4 open $OUT
mv $TMP $OUT