summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-10-29 20:16:06 -0400
committerSam Anthony <sam@samanthony.xyz>2024-10-29 20:16:06 -0400
commit73a4a9569041c984416466aacb42be2d8868dad3 (patch)
treeb6795d59ac698181db901e636033749f3cdb5e95 /Makefile
parent9b718d4dc1bd21687a6a036cf0168fd7a73f8197 (diff)
downloadballs-73a4a9569041c984416466aacb42be2d8868dad3.zip
ball-ball collisions (untested)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1c7b23a..49b04ef 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC = gcc
CFLAGS = -std=c99 -Wall -pedantic -Wno-deprecated-declarations
LDFLAGS = -lGLEW -lGL -lX11 -lGLU -lOpenGL -lOpenCL -lglut -lGLX
-SRC = balls.c sysfatal.c geo.c rand.c
+SRC = balls.c sysfatal.c geo.c rand.c partition.c
OBJ = ${SRC:.c=.o}
balls: ${OBJ}