mirror of
https://github.com/antirez/gguf-tools.git
synced 2025-09-16 17:48:08 +08:00
10 lines
248 B
Makefile
10 lines
248 B
Makefile
all: gguf-tools
|
|
|
|
gguf-tools: gguf-tools.c gguflib.c gguflib.h sds.c sds.h sdsalloc.h fp16.h
|
|
$(CC) gguf-tools.c gguflib.c sds.c fp16.c \
|
|
-march=native -flto -ffast-math \
|
|
-g -ggdb -Wall -W -pedantic -O3 -o gguf-tools
|
|
|
|
clean:
|
|
rm -rf gguf-tools
|