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.
docker/Makefile
Jef Roosens 959afd37e5
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
refactor: renamed existing container functions to fit style
2022-06-22 08:17:58 +02:00

28 lines
320 B
Makefile

# =====CONFIG=====
V_PATH ?= v
V := $(V_PATH) -showcc
all: vdocker
# =====COMPILATION=====
.PHONY: vdocker
vdocker:
$(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 .