micro-utils/builder/config.h

25 lines
453 B
C

#ifndef _CONFIG_H
#define _CONFIG_H
const char *objects[] = {
"console-tools",
"coreutils",
"networking",
"procps",
"sysutils",
"findutils",
"sysutils-linux",
"miscutils",
"shell"
};
#define CHDIR_FMT "Making \033[32m%s\033[0m\n"
#define CC_FMT "CC %10s -> %s\n"
/* Need by spark */
#define LDFLAGS "-lm"
#define CFLAGS "-Wall", "-Werror", "-Wextra", "-pedantic", "-flto", "-Os", "-s", "-I../libmu", "-I../", LDFLAGS
#define CC "cc"
#endif