mirror of
https://github.com/antirez/gguf-tools.git
synced 2025-09-18 21:08:07 +08:00
emb2redis utility added.
This commit is contained in:
11
utils/Makefile
Normal file
11
utils/Makefile
Normal file
@@ -0,0 +1,11 @@
|
||||
all: emb2redis
|
||||
|
||||
hiredis/libhiredis.a:
|
||||
@echo "Please, enter the hiredis directory and build it."
|
||||
@exit 1
|
||||
|
||||
emb2redis: emb2redis.c hiredis/libhiredis.a
|
||||
$(CC) emb2redis.c ../gguflib.c ../sds.c ../fp16.c hiredis/libhiredis.a -o emb2redis -O2 -Wall -W
|
||||
|
||||
clean:
|
||||
rm -f emb2redis
|
Reference in New Issue
Block a user