From 89c0363c97c77a64c2af96442dd1bfe4ff548382 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 25 Jul 2020 12:59:35 +0300 Subject: [PATCH] =?utf8?q?=D0=98=D1=81=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE?= =?utf8?q?=D0=B2=D0=B0=D1=82=D1=8C=20redo=20=D0=B2=D0=BC=D0=B5=D1=81=D1=82?= =?utf8?q?=D0=BE=20Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Makefile | 23 ----------------------- all.do | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 23 deletions(-) delete mode 100644 Makefile create mode 100644 all.do diff --git a/Makefile b/Makefile deleted file mode 100644 index edc3506..0000000 --- a/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -.PHONY: static - -all: clean html static - -clean: - rm -rf cryptoparty.html - -CSS != cat style.css - -html: - makeinfo --html \ - --set-customization-variable CSS_LINES='$(CSS)' \ - --set-customization-variable SHOW_TITLE=0 \ - --set-customization-variable USE_ACCESSKEY=0 \ - --set-customization-variable DATE_IN_HEADER=1 \ - --set-customization-variable TOP_NODE_UP_URL=index.html \ - --set-customization-variable CLOSE_QUOTE_SYMBOL=\" \ - --set-customization-variable OPEN_QUOTE_SYMBOL=\" \ - -o cryptoparty.html index.texi - -static: - cd static ; tar cf - . | tar xfC - ../cryptoparty.html - cp -f logo.png cryptoparty.html diff --git a/all.do b/all.do new file mode 100644 index 0000000..de787d6 --- /dev/null +++ b/all.do @@ -0,0 +1,16 @@ +html=cryptoparty.html +rm -f $html/*.html +${MAKEINFO:-makeinfo} --html \ + --set-customization-variable EXTRA_HEAD='' \ + --set-customization-variable CSS_LINES="`cat style.css`" \ + --set-customization-variable SHOW_TITLE=0 \ + --set-customization-variable USE_ACCESSKEY=0 \ + --set-customization-variable DATE_IN_HEADER=1 \ + --set-customization-variable TOP_NODE_UP_URL=index.html \ + --set-customization-variable CLOSE_QUOTE_SYMBOL=\" \ + --set-customization-variable OPEN_QUOTE_SYMBOL=\" \ + -o $html index.texi +( cd static ; tar cf - . | tar xfC - ../$html ) +cp -f logo.png $html/ +find $html -type d -exec chmod 755 {} \; +find $html -type f -exec chmod 644 {} \; -- 2.44.0