From: Russ Cox Date: Sun, 6 Mar 2011 22:04:24 +0000 (-0500) Subject: build: remove old cgo files X-Git-Tag: weekly.2011-03-07~7 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=59d2acd2d4a3434f49daaa478f2fab1e29f362db;p=gostls13.git build: remove old cgo files Cgo changed to write these files into _obj, but some trees may still have the old ones in the source directory. They need to be removed during make clean so that a subsequent build will use the ones in _obj. R=r, r2 CC=golang-dev https://golang.org/cl/4254056 --- diff --git a/src/Make.pkg b/src/Make.pkg index d912b69043..3d616ca999 100644 --- a/src/Make.pkg +++ b/src/Make.pkg @@ -47,7 +47,7 @@ coverage: gotest 6cov -g $(shell pwd) $O.out | grep -v '_test\.go:' -CLEANFILES+=*.so _obj _test _testmain.go *.exe _cgo* +CLEANFILES+=*.so _obj _test _testmain.go *.exe _cgo* *.cgo[12].* test: gotest