mirror of
https://github.com/antirez/gguf-tools.git
synced 2025-09-17 02:28:07 +08:00
8 lines
136 B
Makefile
8 lines
136 B
Makefile
![]() |
all: gguf-show
|
||
|
|
||
|
gguf-show: gguf-show.c gguf.h
|
||
|
$(CC) gguf-show.c -g -ggdb -Wall -W -pedantic -O2 -o gguf-show
|
||
|
|
||
|
clean:
|
||
|
rm -rf gguf-show
|