diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-10-28 10:34:43 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-10-28 10:34:43 -0400 |
| commit | 5b560599f951cec1d88f86824912bc5241fe6d08 (patch) | |
| tree | 23769f71d5b8d3607cce85a1deb89ba5ad07e1fc /Makefile | |
| parent | 245fcc0a20772c42cceb51288d4e48c5edac147b (diff) | |
| download | balls-5b560599f951cec1d88f86824912bc5241fe6d08.zip | |
set initial positions
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 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 +SRC = balls.c sysfatal.c geo.c OBJ = ${SRC:.c=.o} balls: ${OBJ} @@ -14,4 +14,4 @@ balls: ${OBJ} clean: rm -f *.o balls -${OBJ}: sysfatal.h +${OBJ}: sysfatal.h balls.h |