micro-utils/builder/config.h
2023-11-05 21:42:26 +03:00

21 lines
284 B
C

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