progress on lab 5 part 2

This commit is contained in:
2022-05-03 11:53:11 -05:00
parent e381f5d7ca
commit 780c2bba3c
5 changed files with 192 additions and 15 deletions

View File

@@ -4,7 +4,7 @@ CC = g++
CFLAGS = -c -MMD -g
LFLAGS = -lX11
# Change w/ every new project
SOURCES = main.cpp gcontext.cpp x11context.cpp row.cpp matrix.cpp shape.cpp line.cpp triangle.cpp
SOURCES = main.cpp gcontext.cpp x11context.cpp row.cpp matrix.cpp shape.cpp line.cpp triangle.cpp image.cpp
OBJECTS = $(SOURCES:.cpp=.o)
# Change w/ every new project
EXECUTABLE = Lab5