From 2e8af6099010dc3b525cfd6517b8754bca9e99b9 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 26 Oct 2024 18:01:51 -0400 Subject: initCL() --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ec42712 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +CC = gcc +CFLAGS = -std=c99 -Wall -pedantic -Wno-deprecated-declarations +LDFLAGS = -lOpenCL -lglut -lGLU -lGL -lGLX + +SRC = balls.c sysfatal.c +OBJ = ${SRC:.c=.o} + +balls: ${OBJ} + ${CC} -o $@ ${LDFLAGS} $^ + +%.o: %.c + ${CC} -c ${CFLAGS} $< + +clean: + rm -f *.o balls + +${OBJ}: sysfatal.h -- cgit v1.2.3