feat: scaffold initial project structure with empty source directories and config files

This commit is contained in:
2024-11-28 23:16:16 +00:00
commit d1283897c9
13 changed files with 532 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
CC = gcc
# For now disabled
# CFLAGS = -Wall -Werror -Wextra -pedantic -Ofast -std=c2x
all: build run
build: l33t
l33t: io.h proc.h state.h str.h subprocess.h l33t.c
$(CC) $(CFLAGS) l33t.c -o l33t
run:
./l33t