diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-03-28 22:53:55 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-03-28 22:56:52 +0300 |
commit | 6c0dfc035670240cddf0092a4aa22e5815b6583d (patch) | |
tree | 2b9a0f717fd47293a3a64c6f8c26e1159582a7d1 /doc/src | |
parent | aa6fdd186cf2c29e04d3cc8ca19783fb904a5a33 (diff) | |
download | postgresql-6c0dfc035670240cddf0092a4aa22e5815b6583d.tar.gz postgresql-6c0dfc035670240cddf0092a4aa22e5815b6583d.zip |
Add maintainer-check target
This can do various source code checks that are not appropriate for
either the build or the regression tests. Currently: duplicate_oids,
SGML syntax and tabs check, NLS syntax check.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/Makefile | 2 | ||||
-rw-r--r-- | doc/src/sgml/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/Makefile b/doc/src/Makefile index 30d883815aa..b0d4f1f5063 100644 --- a/doc/src/Makefile +++ b/doc/src/Makefile @@ -4,5 +4,5 @@ subdir = doc/src top_builddir = ../.. include $(top_builddir)/src/Makefile.global -all distprep html man install installdirs uninstall clean distclean maintainer-clean: +all distprep html man install installdirs uninstall clean distclean maintainer-clean maintainer-check: $(MAKE) -C sgml $@ diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index add2c282c6b..3041a530739 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -279,7 +279,7 @@ MAKEINFO = makeinfo ## # Quick syntax check without style processing -check: postgres.sgml $(ALMOSTALLSGML) check-tabs +check maintainer-check: postgres.sgml $(ALMOSTALLSGML) check-tabs $(NSGMLS) $(SPFLAGS) $(SGMLINCLUDE) -s $< |