summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-03-03 22:28:20 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-03-03 22:28:58 +0100
commit44797c4c252a01870745bfbb69cbfed8075687aa (patch)
treed9f139c9ba593ff3d511e6070b7914f20e1cae98 /Makefile
parent633f31dc69cb0480ecc800fe2b671f0b63db3884 (diff)
tests (piece-table): start testing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3270071..a805d05 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC = gcc
-CFLAGS = -g -Werror -Wall -Wpedantic
+CFLAGS = -g -Wall -Wpedantic
TARGET = parc
BASENM = buffer piece-table
SRC = $(addsuffix .c, $(addprefix src/, $(BASENM)) )
@@ -8,7 +8,9 @@ OBJ = $(addsuffix .o, $(addprefix $(OBJDIR)/, $(BASENM)))
HEADERS = $(wildcard src/*.h)
-TEST := buffer
+TEST := buffer\
+ piece-table-print\
+ piece-table-delete
TEST_FILES = $(addprefix tests/, $(TEST))
TEST_SOURCES = $(addsuffix .c, $(addprefix tests/, $(TEST)))