mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-10-31 04:58:17 +00:00 
			
		
		
		
	 0cf061183e
			
		
	
	
		0cf061183e
		
	
	
	
	
		
			
			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>
		
			
				
	
	
		
			19 lines
		
	
	
		
			376 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			376 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0
 | |
| MAN7PAGES = $(wildcard *.7)
 | |
| 
 | |
| all:
 | |
| 
 | |
| distclean: clean
 | |
| 
 | |
| clean:
 | |
| 
 | |
| install:
 | |
| 	$(INSTALLDIR) $(DESTDIR)$(MANDIR)/man7
 | |
| 	$(INSTALLMAN) $(MAN7PAGES) $(DESTDIR)$(MANDIR)/man7
 | |
| 
 | |
| check:
 | |
| 	@for page in $(MAN7PAGES); do test 0 -eq $$($(MAN_CHECK) $$page \
 | |
| 		$(MAN_REDIRECT)) || { echo "Error in $$page"; exit 1; }; done
 | |
| 
 | |
| .PHONY: install clean distclean check
 |