mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-11-04 07:37:05 +00:00 
			
		
		
		
	Pass the same parameters Lintian uses in Debian. $ make check <...> Checking manpages for syntax errors... <standard input>:48: warning: macro `Q' not defined Error in tc-taprio.8 Makefile:27: recipe for target 'check' failed Signed-off-by: Luca Boccassi <bluca@debian.org> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
		
			
				
	
	
		
			21 lines
		
	
	
		
			596 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			596 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0
 | 
						|
INSTALL=install
 | 
						|
INSTALLDIR=install -m 0755 -d
 | 
						|
INSTALLMAN=install -m 0644
 | 
						|
# Pass the same parameters as Lintian uses on Debian.
 | 
						|
MAN_CHECK=LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=80 man --warnings \
 | 
						|
	--encoding=UTF-8 --local-file --troff-device=utf8 --ditroff
 | 
						|
# Hide man output, count and print errors.
 | 
						|
MAN_REDIRECT=2>&1 >/dev/null | tee /dev/fd/2 | wc -l
 | 
						|
 | 
						|
SUBDIRS = man3 man7 man8
 | 
						|
 | 
						|
all clean install check:
 | 
						|
	@for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir $@ || exit $$?; done
 | 
						|
 | 
						|
distclean: clean
 | 
						|
 | 
						|
.PHONY: install clean distclean check
 | 
						|
 | 
						|
.EXPORT_ALL_VARIABLES:
 |