diff options
author | jvech <jmvalenciae@unal.edu.co> | 2023-07-13 20:54:27 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2023-07-13 20:54:27 -0500 |
commit | bd74d6e1842eca74ddc2c268ae9f83e43822fc1b (patch) | |
tree | 9c36d2eadf59bd3deaefb58339e064951bff8a80 /Makefile | |
parent | 46f8c9bed801355ecd85c14ea7a7f11d38f1e5ba (diff) |
add: forward pass with openblas in progress
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ -CC = gcc +CC = clang CFLAGS = -std=c11 -Wall -g BIN = ml OBJDIR = objs SRC = $(wildcard src/*.c) HEADERS = $(wildcard src/*.h) OBJS = $(SRC:src/%.c=${OBJDIR}/%.o) -DLIBS = -ljson-c -lm +DLIBS = -lm $(shell pkg-config --libs-only-l blas json-c) .PHONY: clean all run all: build |