You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
325 B
15 lines
325 B
# Set this if system does not have OpenCL headers in standard include directory
|
|
CL_HEADER_PATH := ../../
|
|
|
|
.PHONY: clean
|
|
|
|
CFLAGS := -I${CL_HEADER_PATH}
|
|
CFLAGS += -fPIC
|
|
|
|
OUTDIR := ../../bin
|
|
|
|
${OUTDIR}/libIcdLog.so: icd_test_log.c
|
|
${CC} ${CFLAGS} -shared -Wl,-soname,libIcdLog.so -o $@ $^
|
|
|
|
clean:
|
|
rm -f ${OUTDIR}/libIcdLog.so
|
|
|