From cd41d782ed389fa97945dccfa29f18455007013f Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Wed, 18 Nov 2020 14:19:34 -0600 Subject: [PATCH] Makefile: Remove obsolete targets --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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