vibecode the entire rgz ig

This commit is contained in:
2026-05-18 16:59:56 +07:00
parent 0b31a50c20
commit ba6614d7a9
8 changed files with 2286 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
CC = gcc
CFLAGS = -std=c11 -Wall -Wextra -pedantic
TARGET = simplefs
SOURCE = simplefs.c
DISK = disk.img
.PHONY: all run clean
all: $(TARGET)
$(TARGET): $(SOURCE)
$(CC) $(CFLAGS) $(SOURCE) -o $(TARGET)
run: $(TARGET)
./$(TARGET) $(DISK)
clean:
rm -f $(TARGET) $(DISK)