mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	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.
		
			
				
	
	
		
			17 lines
		
	
	
		
			486 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			486 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#----------------------------------------------------------------------------
 | 
						|
#
 | 
						|
# PostgreSQL documentation top-level makefile
 | 
						|
#
 | 
						|
# Copyright (c) 1994, Regents of the University of California
 | 
						|
#
 | 
						|
# doc/Makefile
 | 
						|
#
 | 
						|
#----------------------------------------------------------------------------
 | 
						|
 | 
						|
subdir = doc
 | 
						|
top_builddir = ..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
 | 
						|
all distprep html man install installdirs uninstall clean distclean maintainer-clean maintainer-check:
 | 
						|
	$(MAKE) -C src $@
 |