19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
chmod +x $@
$(build)/cortav.html: cortav.ct $(build)/$(executable) | $(build)/
$(build)/$(executable) $< -o $@ -m render:format html -y html:fossil-uv
.PHONY: syncdoc
syncdoc: $(build)/cortav.html
fossil uv add $<
fossil uv sync
.PHONY: clean
clean:
rm -f $(build)/cortav $(build)/cortav.html $(build)/velartrill-cortav-view.desktop $(build)/cortav-view.sh
$(build)/%.sh: desk/%.sh
|
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
chmod +x $@
$(build)/cortav.html: cortav.ct $(build)/$(executable) | $(build)/
$(build)/$(executable) $< -o $@ -m render:format html -y html:fossil-uv
.PHONY: syncdoc
syncdoc: $(build)/cortav.html
fossil uv add $< --as cortav.html
fossil uv sync
.PHONY: clean
clean:
rm -f $(build)/cortav $(build)/cortav.html $(build)/velartrill-cortav-view.desktop $(build)/cortav-view.sh
$(build)/%.sh: desk/%.sh
|