full split complete

This commit is contained in:
2025-11-29 14:56:51 -08:00
parent 74637c8e83
commit c2a6a593ef
16 changed files with 2808 additions and 2690 deletions

View File

@@ -11,8 +11,10 @@ LDFLAGS := -fsanitize=address
all: $(TARGET) test.txt
SRCS := main.c abuf.c core.c term.c buffer.c editor.c undo.c
HDRS := abuf.h core.h term.h buffer.h editor.h undo.h
SRCS := main.c abuf.c core.c term.c buffer.c editor.c editing.c killring.c \
process.c undo.c
HDRS := abuf.h core.h term.h buffer.h editor.h editing.c killring.h \
process.h undo.h
$(TARGET): $(SRCS)
$(CC) $(CFLAGS) -o $(TARGET) $(SRCS) $(LDFLAGS)