From 517805980b106b5ae44e74f8a9b58e76c09c3124 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Thu, 21 Aug 2025 21:51:47 +0200 Subject: text-buffer: Move to a separate file. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 055da29..651de42 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,10 @@ CC = gcc CFLAGS = -g -Wall -Wpedantic -std=c89 TARGET = parc -BASENM = piece-table tui +BASENM = \ + piece-table \ + tui \ + text-buffer SRC = $(addsuffix .c, $(addprefix src/, $(BASENM)) ) OBJDIR = out OBJ = $(addsuffix .o, $(addprefix $(OBJDIR)/, $(BASENM))) -- cgit v1.2.3