From 186abf277e98b1e0d179b3274a73079919d1bf7a Mon Sep 17 00:00:00 2001 From: Artem Gavrilov Date: Wed, 17 Jul 2024 18:47:03 +0200 Subject: [PATCH] Add comments --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bbf0d18..086e94d 100644 --- a/Makefile +++ b/Makefile @@ -31,10 +31,12 @@ include $(top_builddir)/src/Makefile.global include $(top_srcdir)/contrib/contrib-global.mk endif - +# Fetches typedefs list for PostgreSQL core and merges it with typedefs defined in this project. +# https://wiki.postgresql.org/wiki/Running_pgindent_on_non-core_code_or_development_code update-typedefs: wget -q -O - "https://buildfarm.postgresql.org/cgi-bin/typedefs.pl?branch=REL_16_STABLE" | cat - typedefs.list | sort | uniq > typedefs-full.list +# Indents projects sources. indent: pgindent --typedefs=typedefs-full.list .