diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-13 12:48:33 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-13 12:48:33 -0500 |
| commit | daf29651a188a06041ed6d238f7f1b7ab2f5bd9a (patch) | |
| tree | 6c4257a2df4811afca879c29431e6f5e26d8f951 /Makefile | |
| parent | 5011ea1b44c055893c691e923f4e82cdaebd5b0c (diff) | |
| download | balls-daf29651a188a06041ed6d238f7f1b7ab2f5bd9a.zip | |
refactor cl initialization
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 partition.c gl.c io.c +SRC = balls.c sysfatal.c geo.c rand.c partition.c gl.c io.c cl.c OBJ = ${SRC:.c=.o} balls: ${OBJ} |