mirror of
https://github.com/antirez/gguf-tools.git
synced 2025-09-16 17:48:08 +08:00

Also added a few libraries that will be needed soon. The CLI was renamed with the final name of gguf-tools.
9 lines
198 B
Makefile
9 lines
198 B
Makefile
all: gguf-tools
|
|
|
|
gguf-tools: gguf-tools.c gguflib.c gguflib.h sds.c sds.h sdsalloc.h
|
|
$(CC) gguf-tools.c gguflib.c sds.c \
|
|
-g -ggdb -Wall -W -pedantic -O2 -o gguf-tools
|
|
|
|
clean:
|
|
rm -rf gguf-tools
|