summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjorton <jorton@fedoraproject.org>2004-10-13 10:44:51 +0000
committerjorton <jorton@fedoraproject.org>2004-10-13 10:44:51 +0000
commit0ba3e33bdc0b14022de5e4b31f6a2c5a2137a115 (patch)
tree3791ce76cca7f030e144253d2f02a1ce06f3bbe8 /Makefile
parent8596424b2d5e56d39065c2bcf6a139ddeeb02170 (diff)
Add patch status tracking.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 74f844d..299e139 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
# Makefile for source rpm: httpd
-# $Id: Makefile,v 1.2 2004/09/15 15:09:00 jorton Exp $
+# $Id: Makefile,v 1.3 2004/09/17 10:28:46 jorton Exp $
NAME := httpd
SPECFILE = $(firstword $(wildcard *.spec))
UPSTREAM_CHECKS = asc
@@ -12,3 +12,13 @@ migration.html: migration.xml html.xsl
migration-view: migration.html
gnome-moz-remote `pwd`/migration.html
+ALL_PATCHES := $(wildcard *.patch)
+
+status.xml: $(ALL_PATCHES)
+ @./mkstatus.sh $(ALL_PATCHES) > $@
+
+status.html: status.xml status-html.xsl
+ @xsltproc status-html.xsl $< > $@
+
+view-status: status.html
+ gnome-moz-remote `pwd`/$<