mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-06 07:48:50 -06:00
16 lines
249 B
Makefile
16 lines
249 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/ isoron@axavier.org:/www/axavier.org/projects/RELOG/$(VERSION)/
|
|
|
|
.PHONY: docs test
|