summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVictor Toso <victortoso@redhat.com>2015-11-03 12:16:01 +0100
committerVictor Toso <victortoso@redhat.com>2015-11-03 12:16:01 +0100
commit461b4d993cb57080d8629133fcd9c1cdc4c28cd4 (patch)
tree87931762015d848c84fe1ec23c27bd45fdb9f1b0 /Makefile
parent5c59b13f69b8ad4c7043993b23045fca5f5a3a95 (diff)
spice-gtk-api: included last from git master
Attempts to generate content from docbook failed. Moving docbook to another acceptable format always introduced other problems. Very time consuming with no benefit as this would have to be always re-done. We are using the provided html inside of an iframe. Looks good enough for now. The spice-gtk.rst file only set this iframe and pelican include everyting inside the template. In order to not break links, the html from spice-gtk api is included and copied to output folder.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 235cd29..141c980 100644
--- a/Makefile
+++ b/Makefile
@@ -64,6 +64,7 @@ help:
html:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
ln -sf $(OUTPUTDIR)/home.html $(OUTPUTDIR)/index.html
+ cp -r $(BASEDIR)/content-extra/* $(OUTPUTDIR)
clean:
[ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR)
@@ -100,6 +101,7 @@ stopserver:
publish:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
ln -sf $(OUTPUTDIR)/home.html $(OUTPUTDIR)/index.html
+ cp -r $(BASEDIR)/content-extra/* $(OUTPUTDIR)
ssh_upload: publish
scp -P $(SSH_PORT) -r $(OUTPUTDIR)/* $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR)