This repository has been archived on 2026-02-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
aur/Makefile

28 lines
308 B
Makefile

# =====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 .