rust/src/comp/rustc.rc

25 lines
314 B
Text
Raw Normal View History

2010-06-24 06:03:09 +02:00
// -*- rust -*-
use std;
mod fe {
mod lexer;
mod parser;
}
mod driver {
mod rustc;
}
2010-07-13 02:47:40 +02:00
mod lib {
mod llvm;
}
2010-06-24 06:03:09 +02:00
// Local Variables:
// fill-column: 78;
// indent-tabs-mode: nil
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End: