mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
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.
This commit is contained in:
@ -18,9 +18,9 @@
|
||||
#
|
||||
# Meta configuration
|
||||
|
||||
standard_targets = all install installdirs uninstall distprep clean distclean maintainer-clean coverage check installcheck
|
||||
standard_targets = all install installdirs uninstall distprep clean distclean maintainer-clean coverage check installcheck maintainer-check
|
||||
|
||||
.PHONY: $(standard_targets) install-strip maintainer-check html man installcheck-parallel
|
||||
.PHONY: $(standard_targets) install-strip html man installcheck-parallel
|
||||
|
||||
# make `all' the default target
|
||||
all:
|
||||
|
@ -67,3 +67,6 @@ clean:
|
||||
|
||||
distclean maintainer-clean: clean
|
||||
rm -f pg_config.h dynloader.h pg_config_os.h stamp-h
|
||||
|
||||
maintainer-check:
|
||||
cd catalog && ./duplicate_oids
|
||||
|
Reference in New Issue
Block a user