/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
doc/src/sgml/images/Makefile
33 строки
723 B
Peter Eisentraut
Add isolation tests for UPDATE/DELETE FOR PORTION OF
07 апр 2026, 12:22
07 апр 2026, 12:22
b6ccd30
Код
Авторство
О чём код?
# doc/src/sgml/images/Makefile # # see README in this directory about image handling ALL_IMAGES = \ datachecksums.svg \ genetic-algorithm.svg \ gin.svg \ pagelayout.svg \ temporal-entities.svg \ temporal-references.svg \ temporal-update.svg \ temporal-delete.svg \ temporal-isolation.svg DITAA = ditaa DOT = dot XSLTPROC = xsltproc --nonet all: $(ALL_IMAGES) %.svg.tmp: %.gv $(DOT) -T svg -o $@ $< %.svg.tmp: %.txt $(DITAA) -E -S --svg $< $@ # Post-processing for SVG files coming from other tools # # Use --novalid to avoid loading SVG DTD if a file specifies it, since # it might not be available locally, and we don't need it. %.svg: %.svg.tmp fixup-svg.xsl $(XSLTPROC) --novalid -o $@ $(word 2,$^) $<