diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-08-06 22:07:36 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-06 22:07:36 +0000 |
| commit | e07726201800618236569d996c9186e5cd6ede88 (patch) | |
| tree | b1364b03dc856fdd1dcd31438f64f16e794e1f2c | |
| parent | 580f0009d3fd2fb75a049d27feac0124011230fe (diff) | |
| download | rockbox-e07726201800618236569d996c9186e5cd6ede88.zip rockbox-e07726201800618236569d996c9186e5cd6ede88.tar.gz rockbox-e07726201800618236569d996c9186e5cd6ede88.tar.bz2 rockbox-e07726201800618236569d996c9186e5cd6ede88.tar.xz | |
Added site icon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1573 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | www/Makefile | 7 | ||||
| -rw-r--r-- | www/head.t | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/www/Makefile b/www/Makefile index de53f13..ef2b11d 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,7 +1,7 @@ ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -Uunix -H -C -V -LL >$@ SRC := $(wildcard *.t) -OBJS := $(SRC:%.t=%.html) daily.shtml main.shtml index.shtml +OBJS := $(SRC:%.t=%.html) daily.shtml main.shtml index.shtml bugs.html .SUFFIXES: .t .html @@ -33,4 +33,7 @@ index.shtml: main.shtml daily.shtml: daily.t bugs.html: - perl getbugs.pl > bugs.html
\ No newline at end of file + perl getbugs.pl > bugs.html + +clean: + find . -name "*html" | xargs rm @@ -6,6 +6,7 @@ <html> <head> <link rel="STYLESHEET" type="text/css" href="/style.css"> +<link rel="icon" href="/rockbox-16.png" type="image/png"> #ifdef _PAGE_ <title>Rockbox - _PAGE_</title> #else |