From 9a7de4b8c274245af0f2d2fd167e4798cc1fb935 Mon Sep 17 00:00:00 2001 From: Ari Trachtenberg Date: Sun, 22 Sep 2024 11:29:48 -0400 Subject: [PATCH] fixed up make file to do a proper clean --- tests/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Makefile b/tests/Makefile index 49875e8..80ee276 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -13,10 +13,12 @@ LAB1_SRCS = LabOne.cpp lab1.cpp $(COMMON_SRCS) COMM_OBJS = Support/Common.o LAB0_OBJS = LabZero.o lab0.o $(COMM_OBJS) LAB1_OBJS = LabOne.o lab1.o $(COMM_OBJS) +OBJS = $(COMM_OBJS) $(LAB0_OBJS) $(LAB1_OBJS) # Executable names LAB0_EXEC = lab0 LAB1_EXEC = lab1 +EXEC = $(LAB0_EXEC) $(LAB1_EXEC) # Default target to build the executable all: $(LAB0_EXEC) $(LAB1_EXEC) -- GitLab