More stuff builds; almost the C compiler now.
This commit is contained in:
@@ -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" },
|
||||
|
||||
Reference in New Issue
Block a user