]> Cypherpunks repositories - gostls13.git/commitdiff
add crypto/hmac to makefile
authorRob Pike <r@golang.org>
Sat, 23 May 2009 20:53:36 +0000 (13:53 -0700)
committerRob Pike <r@golang.org>
Sat, 23 May 2009 20:53:36 +0000 (13:53 -0700)
R=rsc
DELTA=4  (3 added, 0 deleted, 1 changed)
OCL=29314
CL=29314

src/lib/Make.deps
src/lib/Makefile
src/lib/deps.bash

index 4b0df407ce26ffe5b19fa419c34869a2f78a789e..6a965e32713762900a9b5102bc02de43bf404825 100644 (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
index d258e1adbcbd21be329947b8d6852834b4614a6b..6539002366a1e25fd6e23bbb3a35876bffef18dc 100644 (file)
@@ -19,6 +19,7 @@ DIRS=\
        container/vector\
        crypto/aes\
        crypto/block\
+       crypto/hmac\
        crypto/md5\
        crypto/sha1\
        exec\
index 8495bb28eb506ebfb3686cbe1617ca5e78e97a1f..d6796c940621c1a6a110d2955ba77df7a4e758a8 100755 (executable)
@@ -28,4 +28,5 @@ for dir in $dirs; do (
        echo $dir.install: $deps
 ) done > $TMP
 
+p4 open $OUT
 mv $TMP $OUT