Files
RELOG/Makefile
2020-06-25 15:15:10 -05:00

16 lines
240 B
Makefile

VERSION := 0.3
JULIA := julia --color=yes --project=.
all: docs
test:
$(JULIA) -e 'using Pkg; Pkg.test("RELOG")'
docs:
mkdocs build
docs-push:
rsync -avP docs/ andromeda:/www/axavier.org/projects/RELOG/$(VERSION)/
.PHONY: docs test