From 12ae6aec45cc7eae1b817f5c224cc3112759d105 Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Thu, 25 Jun 2020 15:15:10 -0500 Subject: [PATCH] Add Makefile --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8a8c013..2ce23f5 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,15 @@ -VERSION := 0.2 +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 +.PHONY: docs test