micro-utils/builder/config.h
Your Name 11b3a7907a fix
2023-11-08 19:47:09 +03:00

20 lines
298 B
C

#ifndef _CONFIG_H
#define _CONFIG_H
const char *objects[] = {
"console-tools",
"coreutils",
"sysutils",
"networking",
"procps",
"shell"
};
const char *libs[] = {
"readline"
};
#define CFLAGS "-Wall", "-Werror", "-Wextra", "-pedantic", "-Os", "-s", "-I", "../libmu"
#define CC "cc"
#endif