diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-21 21:51:47 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-21 21:51:47 +0200 |
commit | 517805980b106b5ae44e74f8a9b58e76c09c3124 (patch) | |
tree | 5e222d1671217671be7d792da72e37d23369d7f1 /Makefile | |
parent | d819be1c8161741e1e736521d12c06749af87527 (diff) |
text-buffer: Move to a separate file.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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))) |