This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
Kevin/Makefile
2023-04-17 17:52:14 +02:00

12 lines
No EOL
163 B
Makefile

BINARY_NAME=kevin
build:
cd pkg/llama && make libbinding.a
go build -o ${BINARY_NAME} main.go
run: build
./${BINARY_NAME}
clean:
go clean
rm ${BINARY_NAME}