mirror of
https://github.com/antirez/gguf-tools.git
synced 2025-09-16 17:48:08 +08:00
8 lines
159 B
Makefile
8 lines
159 B
Makefile
all: gguf-show
|
|
|
|
gguf-show: gguf-show.c gguflib.c gguflib.h
|
|
$(CC) gguf-show.c gguflib.c -g -ggdb -Wall -W -pedantic -O2 -o gguf-show
|
|
|
|
clean:
|
|
rm -rf gguf-show
|