This is an automated email from the ASF dual-hosted git repository.
wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-project.git
The following commit(s) were added to refs/heads/main by this push:
new 4f610d8 Delete Makefile
4f610d8 is described below
commit 4f610d8bcc0d2abd66c3db0b378c4de27a67d891
Author: Dave Fisher <[email protected]>
AuthorDate: Thu Nov 12 10:12:37 2020 -0800
Delete Makefile
---
Makefile | 73 ----------------------------------------------------------------
1 file changed, 73 deletions(-)
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 79d4f2f..0000000
--- a/Makefile
+++ /dev/null
@@ -1,73 +0,0 @@
-PY?=python3
-PELICAN?=pelican
-PELICANOPTS=
-
-BASEDIR=$(CURDIR)
-INPUTDIR=$(BASEDIR)/content
-OUTPUTDIR=$(BASEDIR)/output
-CONFFILE=$(BASEDIR)/pelicanconf.py
-PUBLISHCONF=$(BASEDIR)/publishconf.py
-
-
-DEBUG ?= 0
-ifeq ($(DEBUG), 1)
- PELICANOPTS += -D
-endif
-
-RELATIVE ?= 0
-ifeq ($(RELATIVE), 1)
- PELICANOPTS += --relative-urls
-endif
-
-SERVER ?= "0.0.0.0"
-
-PORT ?= 0
-ifneq ($(PORT), 0)
- PELICANOPTS += -p $(PORT)
-endif
-
-
-help:
- @echo 'Makefile for a pelican Web site
'
- @echo '
'
- @echo 'Usage:
'
- @echo ' make html (re)generate the web site
'
- @echo ' make clean remove the generated
files '
- @echo ' make regenerate regenerate files upon
modification '
- @echo ' make publish generate using production
settings '
- @echo ' make serve [PORT=8000] serve site at
http://localhost:8000'
- @echo ' make serve-global [SERVER=0.0.0.0] serve (as root) to
$(SERVER):80 '
- @echo ' make devserver [PORT=8000] serve and regenerate
together '
- @echo ' make ssh_upload upload the web site via
SSH '
- @echo ' make rsync_upload upload the web site via
rsync+ssh '
- @echo '
'
- @echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make
DEBUG=1 html '
- @echo 'Set the RELATIVE variable to 1 to enable relative urls
'
- @echo '
'
-
-html:
- "$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)"
$(PELICANOPTS)
-
-clean:
- [ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)"
-
-regenerate:
- "$(PELICAN)" -r "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)"
$(PELICANOPTS)
-
-serve:
- "$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)"
$(PELICANOPTS)
-
-serve-global:
- "$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)"
$(PELICANOPTS) -b $(SERVER)
-
-devserver:
- "$(PELICAN)" -lr "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)"
$(PELICANOPTS)
-
-devserver-global:
- $(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE)
$(PELICANOPTS) -b 0.0.0.0
-
-publish:
- "$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(PUBLISHCONF)"
$(PELICANOPTS)
-
-
-.PHONY: html help clean regenerate serve serve-global devserver publish
\ No newline at end of file