micro-utils/builder/config.h
Your Name 69fe627457 du
2023-11-05 18:45:11 +03:00

19 lines
257 B
C

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