micro-utils/builder/config.h

20 lines
287 B
C
Raw Normal View History

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"
};
#define CFLAGS "-Wall", "-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