If you're looking to use powerful, higher level tools rather than building *everything* yourself, [this course page](http://www.antlr.org/wiki/display/CS652/CS652+Home) is a pretty good option. It's a languages course by the author of the Java parser engine ANTLR that I took last Spring. You can get the book for the course as a PDF from [the Pragmatic Programmers](http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference). The focus is more on parsing and language design, but by the end of the course for the final project we wrote a program that compiled a moderate subset of C. Because we used tools like ANTLR and LLVM, it was feasible to write the entire compiler in a single day. LLVM, by the way, is simply fantastic. Many situations where you might normally compile down to assembly, you'd be much better off compiling to [LLVM's Intermediate Representation](http://llvm.org/docs/LangRef.html) instead. It's higher level, cross platform, and LLVM is quite good at generating optimized assembly from it.