1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:24:41 -07:00

move native client to exp/nacl.

R=r
DELTA=3706  (1857 added, 1849 deleted, 0 changed)
OCL=35731
CL=35741
This commit is contained in:
Russ Cox 2009-10-14 17:16:21 -07:00
parent c058e20a18
commit 7d795d8c01
9 changed files with 13 additions and 5 deletions

View File

@ -14,6 +14,14 @@ xcd() {
builtin cd $1
}
(xcd pkg/exp/nacl/srpc
make install
) || exit $?
(xcd pkg/exp/nacl/av
make install
) || exit $?
(xcd ../test
./run-nacl
) || exit $?

View File

@ -4,7 +4,7 @@
include $(GOROOT)/src/Make.$(GOARCH)
TARG=nacl/av
TARG=exp/nacl/av
GOFILES=\
av.go\
event.go\

View File

@ -13,9 +13,9 @@ package av
import (
"bytes";
"draw";
"exp/draw";
"exp/nacl/srpc";
"log";
"nacl/srpc";
"os";
"syscall";
"unsafe";

View File

@ -12,7 +12,7 @@ package av
import (
"bytes";
"debug/binary";
"draw";
"exp/draw";
"log";
"os";
"time";

View File

@ -4,7 +4,7 @@
include $(GOROOT)/src/Make.$(GOARCH)
TARG=nacl/srpc
TARG=exp/nacl/srpc
GOFILES=\
client.go\
msg.go\