2023-11-04 22:06:27 +03:00
|
|
|
#ifndef _CONFIG_H
|
|
|
|
#define _CONFIG_H
|
|
|
|
|
|
|
|
const char *objects[] = {
|
|
|
|
"console-tools",
|
|
|
|
"coreutils",
|
|
|
|
"networking",
|
|
|
|
"procps",
|
|
|
|
"shell"
|
|
|
|
};
|
|
|
|
|
2023-11-05 18:31:17 +03:00
|
|
|
const char *libs[] = {
|
|
|
|
"readline"
|
|
|
|
};
|
|
|
|
|
2023-11-05 13:46:39 +03:00
|
|
|
#define CFLAGS "-Wall -Wextra -pedantic -Os -s -I ../libmu"
|
2023-11-05 18:45:11 +03:00
|
|
|
#define CC "tcc"
|
2023-11-04 22:06:27 +03:00
|
|
|
#endif
|