chore: add clang-format config, Makefile, and dot.c system monitor scaffold

This commit is contained in:
2024-12-01 03:54:43 +00:00
commit 2c1778cf2c
4 changed files with 245 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
CC = gcc
CFLAGS = -Wextra -Wall -Werror -pedantic -Ofast
all: dot run
dot: dot.c
$(CC) $(CFLAGS) dot.c -o dot
run:
./dot my-service