From a272f94b56249f328a93957cbd9850ce274b486d Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 14 Sep 2016 13:42:50 +0300 Subject: [PATCH] =?utf8?q?=D0=9E=D1=81=D1=82=D0=B0=D0=B2=D0=B8=D1=82=D1=8C?= =?utf8?q?=20=D0=B2=20Makefile=20=D1=82=D0=BE=D0=BB=D1=8C=D0=BA=D0=BE=20?= =?utf8?q?=D1=82=D0=BE=20=D1=87=D1=82=D0=BE=20=D0=BD=D1=83=D0=B6=D0=BD?= =?utf8?q?=D0=BE=20=D0=B4=D0=BB=D1=8F=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA?= =?utf8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 - Makefile | 29 +++++------------------------ private.mk | 0 3 files changed, 5 insertions(+), 25 deletions(-) delete mode 100644 .gitignore delete mode 100644 private.mk diff --git a/.gitignore b/.gitignore deleted file mode 100644 index f8e36cc..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -private.mk diff --git a/Makefile b/Makefile index 21ff7c0..877a9cf 100644 --- a/Makefile +++ b/Makefile @@ -1,25 +1,6 @@ -include private.mk - -.PHONY: static - -all: clean html static - -clean: - rm -rf out.html - html: - makeinfo --html --css-include=style.css -o out.html index.texi - -static: - cd static ; tar cf - . | tar xfC - ../out.html - -update: update-remote update-hosting - -update-remote: - rsync -rv --progress --delete out.html/ lighttpd@gw.stargrave.org:www.cypherpunks.ru - -update-hosting: - echo "mirror --delete --reverse out.html cypherpunks.ru/docs" | \ - lftp -d -u $(FTP_MIRROR_LOGIN),$(FTP_MIRROR_PASSWORD) $(FTP_MIRROR_HOST) - echo "mirror --delete --reverse out.html/govpn govpn.info/docs" | \ - lftp -d -u $(FTP_MIRROR_LOGIN),$(FTP_MIRROR_PASSWORD) $(FTP_MIRROR_HOST) + makeinfo --html \ + --css-include=style.css \ + --set-customization-variable SHOW_TITLE=0 \ + --set-customization-variable DATE_IN_HEADER=1 \ + -o out.html index.texi diff --git a/private.mk b/private.mk deleted file mode 100644 index e69de29..0000000 -- 2.48.1