This repository has been archived on 2026-01-06. 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.
vieter/Makefile
Jef Roosens c132e6e6ad
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Added custom v support for CI
2022-01-09 23:02:55 +01:00

21 lines
438 B
Makefile

.PHONY: run
run:
API_KEY=test REPO_DIR=data LOG_LEVEL=DEBUG v run vieter
.PHONY: watch
watch:
API_KEY=test REPO_DIR=data LOG_LEVEL=DEBUG v watch run vieter
.PHONY: fmt
fmt:
v fmt -w vieter
# Pulls & builds my personal build of the v compiler, required for this project to function
.PHONY: customv
customv:
rm -rf v-jjr
git clone \
-b vweb-streaming \
--single-branch \
https://github.com/ChewingBever/v jjr-v
make -C jjr-v