More stuff builds; almost the C compiler now.

This commit is contained in:
David Given
2016-07-14 23:54:13 +02:00
parent cdbd605803
commit bcf3408e36
5 changed files with 386 additions and 0 deletions

View File

@@ -3,6 +3,38 @@ bundle {
srcs = { "./h/*.h" }
}
clibrary {
name = "system",
srcs = { "./src/system/*.c" },
hdrs = { "./src/system/system.h" },
deps = { "+headers" },
}
clibrary {
name = "alloc",
srcs = { "./src/alloc/*.c" },
hdrs = { "./src/alloc/alloc.h" },
deps = {
"+headers",
"+system"
},
}
clibrary {
name = "flt_arith",
srcs = { "./src/flt_arith/*.c" },
hdrs = { "./src/flt_arith/flt_arith.h" },
deps = {
"+headers"
}
}
clibrary {
name = "idf",
srcs = {},
hdrs = { "./src/idf/idf_pkg.*" },
}
clibrary {
name = "string",
srcs = { "./src/string/*.c" },