diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-13 12:14:12 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-13 12:14:12 -0500 |
| commit | 44792fd5369cfe2ad1478b72bf22b0d1829f291b (patch) | |
| tree | ee991768c1632b50eaaba6e6b4f873eae420871a /Makefile | |
| parent | 2e442c894d50c42aea748d21a6f08add123e9a70 (diff) | |
| download | balls-44792fd5369cfe2ad1478b72bf22b0d1829f291b.zip | |
move readFile() out of balls.c
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 +SRC = balls.c sysfatal.c geo.c rand.c partition.c io.c OBJ = ${SRC:.c=.o} balls: ${OBJ} |