diff options
| author | s a m <samuel@yakubos.org> | 2026-06-07 01:31:40 +0100 |
|---|---|---|
| committer | s a m <samuel@yakubos.org> | 2026-06-07 01:31:40 +0100 |
| commit | 73709637abcc952c8efda0349f7f639b90302e7a (patch) | |
| tree | d685e5ff6212b64c7239efa0476a790e18d00895 /Makefile | |
init
Diffstat (limited to 'Makefile')
| -rwxr-xr-x | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100755 index 0000000..b7b585e --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# Big kram's stats app +#clear ; vim main.c ; gcc main.c -Wall -Wextra -Wpedantic -std=c99 -o stats + +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os + +CC = tcc + + +all: + ${CC} ${CFLAGS} main.c -o stats + +.PHONY: all clean dist install uninstall |