From 5c89b3615c067c51e0076f5433ccbdbee5022f70 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Wed, 2 Oct 2024 11:44:15 -0400 Subject: refactor --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8bd89f1..b4e8116 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,12 @@ CC = g++ CFLAGS = -Wall -pedantic LDFLAGS = -ltbb -lglut -lGLU -lGL -balls: balls.o collision.o +balls: balls.o collision.o geometry.o ${CC} -o $@ $^ ${LDFLAGS} @echo done %.o: %.cpp balls.h - ${CC} -c ${CFLAGS} $< \ No newline at end of file + ${CC} -c ${CFLAGS} $< + +clean: + rm -f ./*.o balls \ No newline at end of file -- cgit v1.2.3