Embed templates

This commit is contained in:
kamkow1
2025-06-09 22:10:49 +02:00
parent ac48e49ecc
commit a8c5d7817d
8 changed files with 84 additions and 4 deletions

View File

@ -18,6 +18,7 @@ int main(int argc, char ** argv)
"./routes.c",
"./baked.c",
"./gpp.c",
"./tmpls.c",
"./mongoose.o",
"./gpp1"
) {
@ -36,10 +37,10 @@ int main(int argc, char ** argv)
#if DEBUG
CMD("cc", "-ggdb", "-I.", "-D_GNU_SOURCE", "-DGEBS_NO_PREFIX", "-o", "./aboba",
"./main.c", "./routes.c", "./baked.c", "./gpp.c", "./mongoose.o");
"./main.c", "./routes.c", "./baked.c", "./gpp.c", "./tmpls.c", "./mongoose.o");
#else
CMD("cc", "-I.", "-D_GNU_SOURCE", "-DGEBS_NO_PREFIX", "-o", "./aboba",
"./main.c", "./routes.c", "./baked.c", "./gpp.c", "./mongoose.o");
"./main.c", "./routes.c", "./baked.c", "./gpp.c", "./tmpls.c", "./mongoose.o");
#endif
}
} else if (strcmp(cmd, "clean") == 0) {