Tightly coupling the compiler with the build system seems like a good idea, as long as you're happy with the build system in question. If a coder wants to use your compiler with, say, SCons, an in-house script, or even traditional make, it doesn't work out so well.
Another thing to think about is the initial mental overhead. If someone wants to try out your compiler, he doesn't necessarily want to learn your build system at the same time. Software that's easy to start using has a greater chance to catch on: just look at Rails.
Edit: Your new proposal to take extra information over STDIN seems reasonable. Just be very careful to make a clear, consistent distinction between the kinds of options set on the command line versus those piped in later. This is an API issue, not a UI issue, so any future changes would be expensive.
