From 73709637abcc952c8efda0349f7f639b90302e7a Mon Sep 17 00:00:00 2001 From: s a m Date: Sun, 7 Jun 2026 01:31:40 +0100 Subject: init --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3