I think what you may be looking for is:
http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours
You may also want to take a look at the EHC project which is a Haskell compiler (written in Haskell) designed for students and experimentation.
Let me just add to Edward Yang's comment. He did answer the question you were asking but the answer was a bit short. SICP, among other things discusses how to write a compiler. The authors of the book invented the notion of using a Meta-circular evaluator to create a LISP interpreter that could decompose a LISP down to primitive machine operations.
So SICP is what you are looking for, an equivalent of the early chapters of the Dragon book. SICP in this sense is an introductory text on how to create a compiler aimed at a student teaching them the basics. A more advanced book is going to assume you know what's in SICP. For example you will see "fix" given a lot of importance in Haskell discussions where
fix f = f (fix f).
But without understand what a Y-combinator is and what this has to do with building looping structures from symbolic evaluators the importance of fix won't make sense. Regardless of Haskell or LISP, in general functional compilers do this meta-circular reduction and then binary translation.
Lisp in Small Pieces walks through about a dozen different LISP compilers in detail contrasting various strategies. Anyway this reading list may be of help: http://library.readscheme.org/page8.html I get you are interested in Haskell not LISP but there are about 100 LISP books for every Haskell book.