diff options
author | Christian Hesse | 2013-05-29 10:16:06 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2013-05-31 02:52:24 +0200 |
commit | 52c926cadbff5fd0aaf00ebd79619112aba46182 (patch) | |
tree | 301b06f1e17800e82caa88df85b51028a1541198 /Makefile | |
parent | ui-summary: do not free ref (diff) | |
download | cgit-52c926cadbff5fd0aaf00ebd79619112aba46182.tar.gz cgit-52c926cadbff5fd0aaf00ebd79619112aba46182.zip |
Add favicon
This adds a favicon to cgit. It is not enabled by default, though. The file contains two icons, 16x16 and 32x32 pixels, optimized for size.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile index d86d131..00b3269 100644 --- a/Makefile +++ b/Makefile | |||
@@ -77,6 +77,7 @@ install: all | |||
77 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) | 77 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) |
78 | $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css | 78 | $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css |
79 | $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png | 79 | $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png |
80 | $(INSTALL) -m 0644 favicon.ico $(DESTDIR)$(CGIT_DATA_PATH)/favicon.ico | ||
80 | $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir) | 81 | $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir) |
81 | $(COPYTREE) filters/* $(DESTDIR)$(filterdir) | 82 | $(COPYTREE) filters/* $(DESTDIR)$(filterdir) |
82 | 83 | ||
@@ -98,6 +99,7 @@ uninstall: | |||
98 | rm -f $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 99 | rm -f $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
99 | rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css | 100 | rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css |
100 | rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png | 101 | rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png |
102 | rm -f $(DESTDIR)$(CGIT_DATA_PATH)/favicon.ico | ||
101 | 103 | ||
102 | uninstall-doc: uninstall-man uninstall-html uninstall-pdf | 104 | uninstall-doc: uninstall-man uninstall-html uninstall-pdf |
103 | 105 | ||