X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/bcc25888b3299758ad36721530cca3b899b7166c..c043fa535514a76091be87a45ad472a505f9dd33:/lunaix-os/hal/char/LBuild diff --git a/lunaix-os/hal/char/LBuild b/lunaix-os/hal/char/LBuild index dbc15be..55e3c82 100644 --- a/lunaix-os/hal/char/LBuild +++ b/lunaix-os/hal/char/LBuild @@ -1,15 +1,13 @@ -use("uart") +from . import uart -sources([ +if config.vga_console: + src.c += "lxconsole.c" + +if config.chargame_console: + src.c += "chargame.c" + +src.c += ( "devnull.c", "serial.c", "devzero.c", -]) - -if config("vga_console"): - - sources("lxconsole.c") - -if config("chargame_console"): - - sources("chargame.c") \ No newline at end of file +) \ No newline at end of file