2016-06-09 04:55:44 +00:00
|
|
|
bundle {
|
|
|
|
name = "headers",
|
|
|
|
srcs = { "./h/*.h" }
|
|
|
|
}
|
|
|
|
|
2016-06-09 05:14:41 +00:00
|
|
|
clibrary {
|
|
|
|
name = "string",
|
|
|
|
srcs = { "./src/string/*.c" },
|
2016-06-19 07:32:45 +00:00
|
|
|
deps = { "+headers" },
|
|
|
|
}
|
|
|
|
|
|
|
|
clibrary {
|
|
|
|
name = "object",
|
|
|
|
srcs = { "./src/object/*.c" },
|
|
|
|
deps = {
|
|
|
|
"+headers",
|
|
|
|
"h+local",
|
|
|
|
"h+emheaders",
|
|
|
|
},
|
2016-06-09 05:14:41 +00:00
|
|
|
}
|
|
|
|
|