Skip to content

Add favicon to html manual #665

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 24, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,11 @@ doc/haskell-mode.html: doc/haskell-mode.texi doc/haskell-mode.css

doc/html/index.html : doc/haskell-mode.texi
if [ -e doc/html ]; then rm -r doc/html; fi
LANG=en_US.UTF-8 $(MAKEINFO) $(MAKEINFO_FLAGS) --html \
--css-ref=haskell-mode.css \
-c AFTER_BODY_OPEN="<div class='background'> </div>" \
-c SHOW_TITLE=0 \
LANG=en_US.UTF-8 $(MAKEINFO) $(MAKEINFO_FLAGS) --html \
--css-ref=haskell-mode.css \
-c AFTER_BODY_OPEN='<div class="background"> </div>' \
-c EXTRA_HEAD='<link rel="shortcut icon" href="haskell-mode-32x32.png">' \
-c SHOW_TITLE=0 \
-o doc/html $<

doc/html/haskell-mode.css : doc/haskell-mode.css doc/html/index.html
Expand All @@ -150,7 +151,10 @@ doc/html/haskell-mode.css : doc/haskell-mode.css doc/html/index.html
doc/html/haskell-mode.svg : images/haskell-mode.svg doc/html/index.html
cp $< $@

doc/html : doc/html/index.html doc/html/haskell-mode.css doc/html/haskell-mode.svg
doc/html/haskell-mode-32x32.png : images/haskell-mode-32x32.png doc/html/index.html
cp $< $@

doc/html : doc/html/index.html doc/html/haskell-mode.css doc/html/haskell-mode.svg doc/html/haskell-mode-32x32.png

deploy-manual : doc/html
cd doc && ./deploy-manual.sh
Expand Down