aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjvech <jmvalenciae@unal.edu.co>2023-07-13 20:54:27 -0500
committerjvech <jmvalenciae@unal.edu.co>2023-07-13 20:54:27 -0500
commitbd74d6e1842eca74ddc2c268ae9f83e43822fc1b (patch)
tree9c36d2eadf59bd3deaefb58339e064951bff8a80 /Makefile
parent46f8c9bed801355ecd85c14ea7a7f11d38f1e5ba (diff)
add: forward pass with openblas in progress
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 44e0192..26f5ec1 100644
--- a/Makefile
+++ b/Makefile
@@ -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
Feel free to download, copy and edit any repo