diff --git a/Makefile b/Makefile index 99e1581..2587acf 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,6 @@ JULIA := julia --color=yes --project=@. MKDOCS := ~/.local/bin/mkdocs -SRC_FILES := $(wildcard src/*.jl) $(wildcard test/*.jl) VERSION := 0.1 build/sysimage.so: src/sysimage.jl Project.toml Manifest.toml @@ -20,9 +19,6 @@ docs: $(MKDOCS) build -d ../docs/$(VERSION)/ rm ../docs/$(VERSION)/*.ipynb -docs-push: - rsync -avP docs/ isoron@axavier.org:/www/axavier.org/projects/UnitCommitment.jl/ - install-deps-docs: pip install --user mkdocs mkdocs-cinder python-markdown-math @@ -30,4 +26,4 @@ test: build/sysimage.so @echo Running tests... $(JULIA) --sysimage build/sysimage.so -e 'using Pkg; Pkg.test("UnitCommitment")' | tee build/test.log -.PHONY: docs docs-push build test +.PHONY: docs test