diff options
| author | sumuel <samuel@yakubos.org> | 2026-06-07 02:07:59 +0100 |
|---|---|---|
| committer | sumuel <samuel@yakubos.org> | 2026-06-07 02:07:59 +0100 |
| commit | 3dbe54853c4733bbe5ff58a6403d1759e921bdc3 (patch) | |
| tree | af5204b3feaae0f659f07c2816677879beb3c157 | |
| parent | aad2b809ad64ee653793e16ca3e7ba0a84d3fd2a (diff) | |
Change main.c to stats.c
| -rwxr-xr-x | Makefile | 3 | ||||
| -rwxr-xr-x | build.sh | 2 | ||||
| -rw-r--r-- | stats.c (renamed from main.c) | 0 |
3 files changed, 3 insertions, 2 deletions
@@ -5,8 +5,9 @@ CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os CC = gcc +SRC = stats.c all: - ${CC} ${CFLAGS} main.c -o stats + ${CC} ${CFLAGS} ${SRC} -o stats .PHONY: all clean dist install uninstall @@ -2,6 +2,6 @@ clear -vim main.c +vim stats.c make |