diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2006-03-17 22:51:33 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2006-03-17 22:51:33 +0000 |
| commit | 85c74a52c58fdcea458ea9028b501c24d5f11125 (patch) | |
| tree | be6ccd3a92c4a7f259aeaa82d4c2cd210a6273a7 | |
| parent | 44769c236dc0cdb365972395ce9fe6c3b8441195 (diff) | |
| download | rockbox-85c74a52c58fdcea458ea9028b501c24d5f11125.zip rockbox-85c74a52c58fdcea458ea9028b501c24d5f11125.tar.gz rockbox-85c74a52c58fdcea458ea9028b501c24d5f11125.tar.bz2 rockbox-85c74a52c58fdcea458ea9028b501c24d5f11125.tar.xz | |
Added since25, doom & devcon2006
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9083 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | www/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/www/Makefile b/www/Makefile index 8c0521f..49350c9 100644 --- a/www/Makefile +++ b/www/Makefile @@ -2,7 +2,7 @@ ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -Uunix -H -C -V - SRC := $(wildcard *.t) SOBJS := daily.shtml main.shtml index.shtml status.shtml \ - bugs.shtml requests.shtml patches.shtml + bugs.shtml requests.shtml patches.shtml cvs.shtml OBJS := $(SRC:%.t=%.html) $(SOBJS) .SUFFIXES: .t .html @@ -30,6 +30,8 @@ all: $(OBJS) head.tmpl @(cd screenshots; $(MAKE)) @(cd digest; $(MAKE)) @(cd playerhistory; $(MAKE)) + @(cd devcon2006; $(MAKE)) + @(cd doom; $(MAKE)) head.tmpl: head.t $(ACTION) -DTWIKI $< @@ -43,5 +45,10 @@ index.shtml: main.shtml daily.shtml: daily.t +cvs.shtml: daily.t + +since25.html: + ln -s /home/dast/daniel_html/rockbox/since25.html since25.html + clean: find . -name "*html" | xargs rm |