From 8deb7d91f146eb342dbf28fc66a07e665bd7a15a Mon Sep 17 00:00:00 2001 From: David Phillips Date: Mon, 2 Oct 2017 20:49:16 +1300 Subject: Add opencl CFLAGS and targets to makefile --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 85880da..6289664 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,17 @@ -CFLAGS += -Wall -Wextra -O2 -LDFLAGS += -lssl -lcrypto -lpthread +CFLAGS += -Wall -Wextra -O2 -I/usr/include/CL +LDFLAGS += -lssl -lcrypto -lpthread -lOpenCL -all: sand-leek +all: sand-leek sand-leek-cl sand-leek: sand-leek.o onion_base32.o key_update.o $(CC) -o $@ $^ $(LDFLAGS) -sand-leek-cl: trampoline.o +sand-leek-cl: sand-leek-cl.o trampoline.o cl_error.o slurp.o $(CC) -o $@ $^ $(LDFLAGS) +sand-leek-cl.o: sand-leek-cl.c + $(CC) -c -o $@ $^ $(CFLAGS) -DCL_SRC_DIR=\"$(PWD)/cl/\" + clean: rm -f sand-leek *.o -- cgit v1.1