2022-01-09 09:29:11 +01:00
|
|
|
.PHONY: run
|
|
|
|
run:
|
2022-01-09 21:45:48 +01:00
|
|
|
API_KEY=test REPO_DIR=data LOG_LEVEL=DEBUG v run vieter
|
|
|
|
|
|
|
|
.PHONY: watch
|
|
|
|
watch:
|
2022-01-09 17:44:47 +01:00
|
|
|
API_KEY=test REPO_DIR=data LOG_LEVEL=DEBUG v watch run vieter
|
2022-01-09 09:29:11 +01:00
|
|
|
|
|
|
|
.PHONY: fmt
|
|
|
|
fmt:
|
|
|
|
v fmt -w vieter
|
2022-01-09 23:02:55 +01:00
|
|
|
|
|
|
|
# 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
|
2022-01-09 23:03:51 +01:00
|
|
|
'$(MAKE)' -C jjr-v
|