diff --git a/tests/Makefile b/tests/Makefile index 49875e8dd0ad1df8f160130b18f29678ac4a7146..80ee276ab01b663f6636a7b9632b459a5c0ddd4c 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)