mirror of
				https://github.com/SwallowOS/xorg_lib_libxcb
				synced 2025-11-04 05:28:12 +08:00 
			
		
		
		
	The section number is no longer hard-coded, supplied by xorg-macros. The left footer is now "X Version 11". The center footer is the package name with the version, "libxcb 1.9" The man directory is a sibbling to the doc directory. One can build or clean the man pages without disturbing the library code. Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
		
			
				
	
	
		
			19 lines
		
	
	
		
			375 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			375 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
libmandir = $(LIB_MAN_DIR)
 | 
						|
 | 
						|
libman_PRE =			\
 | 
						|
	xcb-examples.man	\
 | 
						|
	xcb-requests.man
 | 
						|
 | 
						|
libman_DATA = $(libman_PRE:man=$(LIB_MAN_SUFFIX))
 | 
						|
 | 
						|
EXTRA_DIST = $(libman_PRE)
 | 
						|
 | 
						|
CLEANFILES = $(libman_DATA)
 | 
						|
 | 
						|
# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
 | 
						|
SUFFIXES = .$(LIB_MAN_SUFFIX) .man
 | 
						|
 | 
						|
.man.$(LIB_MAN_SUFFIX):
 | 
						|
	$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
 |