Hi All,
I write a tool for study Go program, it's simple but can let you
working with Go package without write Makefile.
Feel free to give me suggest. It may not going to be "java ant"
replacement, but it will do most "javac" can do in java and more Go
feature.
==============================
GM - Go auto maker
Make sure you Go toolchain is correct work.
Bootstrap
svn checkout
http://moogle-store.googlecode.com/svn/trunk/study/gm gm
cd gm
mkdir bin; 6g gm.go ; 6l -o bin/gm gm.6; rm gm.6
bin/gm
See README file for other information
Just for a hobby project, I decide to write a Go maker to let it works
just out-of-box.
For programmers from Java, especially no C/C++ background, is hard to
understand how Makefile works. Since Go is such a simple language, why
not just write a simple tool to do most javac can do ? Esepcially,
package mangement is not a trivial to do for a starter.
Note. I only test on OSX 10.6. (amd64)