2023-11-04 22:06:27 +03:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
|
|
|
|
|
|
|
const char *objects[] = {
|
|
|
|
"console-tools",
|
|
|
|
"coreutils",
|
2023-11-05 21:42:26 +03:00
|
|
|
"sysutils",
|
2023-11-04 22:06:27 +03:00
|
|
|
"networking",
|
|
|
|
"procps",
|
|
|
|
"shell"
|
|
|
|
};
|
|
|
|
|
2023-11-05 18:31:17 +03:00
|
|
|
const char *libs[] = {
|
|
|
|
"readline"
|
|
|
|
};
|
|
|
|
|
2023-11-08 19:47:09 +03:00
|
|
|
#define CFLAGS "-Wall", "-Werror", "-Wextra", "-pedantic", "-Os", "-s", "-I", "../libmu"
|
2023-11-05 21:42:26 +03:00
|
|
|
#define CC "cc"
|
2023-11-04 22:06:27 +03:00
|
|
|
#endif
|