summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-03-13 14:22:59 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-03-13 14:22:59 +0000
commit4df003370511fcabc0c05d7920f03be08094aeb7 (patch)
tree3fdff33db9837461df082cfbca222125b7bf1d2c /Makefile.in
parent4e99416de0eecaada3f8f5492f3976ad81120700 (diff)
downloadquilt-4df003370511fcabc0c05d7920f03be08094aeb7.tar.gz
- Add `quilt graph' command for generating a dependency graph
between patches. This requires the graphviz package for removing transitive edges (optional) and for rendering the graph. Please note that the graph command itself is minimal, while the underlying scripts/dependency-graph is more flexible. - The spec file was missing the quilt.1 man page.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 8790446..2712f87 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -55,16 +55,16 @@ BIN := $(BIN_IN)
SRC += $(BIN_SRC:%=bin/%)
DIRT += $(BIN_IN:%=bin/%)
-QUILT_IN := add applied delete diff files import new next patches \
- pop previous push refresh remove series setup top unapplied \
- fold fork snapshot edit
+QUILT_IN := add applied delete diff edit files fold fork graph import \
+ new next patches pop previous push refresh remove series \
+ setup snapshot top unapplied
QUILT_SRC := $(QUILT_IN:%=%.in)
QUILT := $(QUILT_IN)
SRC += $(QUILT_SRC:%=quilt/%)
DIRT += $(QUILT_IN:%=quilt/%)
-SCRIPTS_IN := apatch rpatch patchfns parse-patch spec2series
+SCRIPTS_IN := apatch rpatch patchfns parse-patch spec2series dependency-graph
SCRIPTS_SRC := $(SCRIPTS_IN:%=%.in)
SCRIPTS := $(SCRIPTS_IN)
SRC += $(SCRIPTS_SRC:%=scripts/%)