diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2009-12-23 22:26:43 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2009-12-23 22:31:02 +0100 |
commit | 864fb03a3305b65fedbe434ebb87510ac13fe865 (patch) | |
tree | 6b0b2b0dccf6fd1835a4e86ba808fbad2cba89cb /SConstruct |
Initial commit.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct new file mode 100644 index 0000000..ce87bb9 --- /dev/null +++ b/SConstruct @@ -0,0 +1,15 @@ +import os + +env = Environment( + ENV = os.environ, +) + +Export('env') + +env.SConscript('kernel/SConscript') + +env.SConscript('floppy/SConscript') + +env.Command('qemu', 'floppy/floppy.img', 'qemu -s -m 32 -fda $SOURCE') + +Default('kernel') |