Include 'running since' in the footer

This commit is contained in:
kamkow1
2025-06-18 02:00:52 +02:00
parent a90517c4da
commit e9a95c2c54
9 changed files with 56 additions and 3 deletions

View File

@ -20,7 +20,9 @@ int main(int argc, char ** argv)
"./baked.c",
"./baked.h",
"./clonestr.h",
"./commit.h"
"./commit.h",
"./timer.c",
"./timer.h",
"./mongoose.o",
"./gpp1",
@ -82,13 +84,13 @@ int main(int argc, char ** argv)
#if DEBUG
CMD("cc", "-fPIC", "-ggdb", "-I.", "-DDEBUG=1", "-D_GNU_SOURCE", "-DGEBS_NO_PREFIX",
"-DINCBIN_PREFIX=", "-DINCBIN_STYLE=INCBIN_STYLE_SNAKE", "-Wl,-z,execstack", "-o", "./aboba",
"./main.c", "./routes.c", "./baked.c", "./mongoose.o", "./cJSON/cJSON.c",
"./main.c", "./routes.c", "./baked.c", "./timer.c", "./mongoose.o", "./cJSON/cJSON.c",
"./md5-c/md5.c",
"-lpthread");
#else
CMD("cc", "-fPIC", "-I.", "-D_GNU_SOURCE", "-DGEBS_NO_PREFIX",
"-DINCBIN_PREFIX=", "-DINCBIN_STYLE=INCBIN_STYLE_SNAKE", "-Wl,-z,execstack", "-o", "./aboba",
"./main.c", "./routes.c", "./baked.c", "./mongoose.o", "./cJSON/cJSON.c",
"./main.c", "./routes.c", "./baked.c", "./timer.c", "./mongoose.o", "./cJSON/cJSON.c",
"./md5-c/md5.c",
"-lpthread");
#endif