1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Change Graphviz file extension

Change extension for Graphviz files from .dot to .gv.  The latter
appears to be the generally preferred one nowadays.

Discussion: https://www.postgresql.org/message-id/flat/71fe76d2-c7d7-2acc-6762-bbf9e61c566e%402ndquadrant.com
This commit is contained in:
Peter Eisentraut
2019-05-26 08:08:05 +02:00
parent 02aa15de1b
commit 41205719d3
3 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@ DOT = dot
all: $(ALL_IMAGES)
%.svg: %.dot
%.svg: %.gv
$(DOT) -T svg -o $@ $<
%.svg: %.txt