1
0
mirror of https://github.com/golang/go synced 2024-11-22 05:04:40 -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 builtin cd $1
} }
(xcd pkg/exp/nacl/srpc
make install
) || exit $?
(xcd pkg/exp/nacl/av
make install
) || exit $?
(xcd ../test (xcd ../test
./run-nacl ./run-nacl
) || exit $? ) || exit $?

View File

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

View File

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

View File

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

View File

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