feat: added info function

This commit is contained in:
Jef Roosens 2022-06-22 13:42:55 +02:00
parent 3d39132646
commit 7efa42f1e5
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 80 additions and 46 deletions

28
Makefile Normal file
View file

@ -0,0 +1,28 @@
# =====CONFIG=====
V_PATH ?= v
V := $(V_PATH) -showcc
all: aur
# =====COMPILATION=====
.PHONY: aur
aur:
$(V) -g -shared .
# =====DOCS=====
.PHONY: api-docs
api-docs:
rm -rf '_docs'
v doc -f html -m -readme .
# =====OTHER=====
.PHONY: lint
lint:
$(V) fmt -verify .
.PHONY: fmt
fmt:
$(V) fmt -w .