From d4970c8d7606f38e1a103b7b1d4e15c8fe74a260 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Thu, 21 Nov 2024 09:46:54 +0100 Subject: [PATCH] Include edit_distance in spell target --- lab2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab2/Makefile b/lab2/Makefile index 0b87009..aaa709f 100644 --- a/lab2/Makefile +++ b/lab2/Makefile @@ -12,7 +12,7 @@ edit: test_edit_distance.o edit_distance.o @echo "Building & linking $@" @$(CXX) $(CXXFLAGS) $^ -o $@ -spell: spell.o word.o dictionary.o +spell: spell.o word.o dictionary.o edit_distance.o @echo "Building & linking $@" @$(CXX) $(CXXFLAGS) $^ -o $@