Commit 9a7de4b8 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

fixed up make file to do a proper clean

parent 1a011f21
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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)