fiber-orm-nim/Makefile

11 lines
314 B
Makefile
Raw Permalink Normal View History

2022-09-02 23:25:52 -05:00
SOURCES=$(shell find src -type f)
build: $(shell find src -type f)
nimble build
2022-09-02 23:25:52 -05:00
docs: $(shell find src -type f)
nim doc --project --index:on --git.url:https://github.com/jdbernard/fiber-orm --outdir:docs src/fiber_orm
nim rst2html --outdir:docs README.rst
cp docs/fiber_orm.html docs/index.html
.PHONY: docs