summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2025-08-21 21:51:47 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2025-08-21 21:51:47 +0200
commit517805980b106b5ae44e74f8a9b58e76c09c3124 (patch)
tree5e222d1671217671be7d792da72e37d23369d7f1 /Makefile
parentd819be1c8161741e1e736521d12c06749af87527 (diff)
text-buffer: Move to a separate file.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
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)))