diff options
author | Rob Pike <r@golang.org> | 2012-01-30 14:46:31 -0800 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2012-01-30 14:46:31 -0800 |
commit | af481703a11825955bd7e456ec79c9414991163f (patch) | |
tree | 2416f0f7dbe938077f720e41136be395f1c260a8 /src/cmd/8g/Makefile | |
parent | 7b20a90437eaeb9e22bb53d15f7343e1868bda13 (diff) | |
download | go-af481703a11825955bd7e456ec79c9414991163f.tar.gz |
go: move compilers into the go-tool directory
Also delete gotest, since it's messy to fix and slated for deletion anyway.
A couple of things outside src can't be tested any more. "go test" will be
fixed and these tests will be re-enabled. They're noisy for now.
Fixes issue 284.
R=rsc
CC=golang-dev
http://codereview.appspot.com/5598049
Diffstat (limited to 'src/cmd/8g/Makefile')
-rw-r--r-- | src/cmd/8g/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/8g/Makefile b/src/cmd/8g/Makefile index b459782a3..fd3e30aad 100644 --- a/src/cmd/8g/Makefile +++ b/src/cmd/8g/Makefile @@ -30,7 +30,7 @@ OFILES=\ LIB=\ ../gc/gc.a\ -include ../../Make.ccmd +include ../../Make.ctool %.$O: ../gc/%.c $(HOST_CC) $(HOST_CFLAGS) -c -I. -o $@ ../gc/$*.c |