diff options
author | David Phillips <david@sighup.nz> | 2017-10-02 20:49:16 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-10-02 20:49:16 +1300 |
commit | 8deb7d91f146eb342dbf28fc66a07e665bd7a15a (patch) | |
tree | 274a041b2a1d047abc1cbde8f26826ae05d4cf5d /Makefile | |
parent | 5267992a6057c82652514a1a4129582d9a3266f7 (diff) | |
download | sand-leek-8deb7d91f146eb342dbf28fc66a07e665bd7a15a.tar.xz |
Add opencl CFLAGS and targets to makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -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 |