summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile12
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