Files
gguf-tools/Makefile
antirez 53fb176b3b Initial API to create new GGUF files.
Also added a few libraries that will be needed soon.
The CLI was renamed with the final name of gguf-tools.
2023-12-25 22:10:07 +01:00

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