Drop the checkdoc-batch library in favour of a simpler approach: run checkdoc on all *.el files in the repo, bailing out on the first encountered error. While here, don't call checkdoc on eval. Signed-off-by: Justin Abrahms <justin@abrah.ms>
		
			
				
	
	
		
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
update:
 | 
						|
	emacs -batch -l test/make-update.el
 | 
						|
 | 
						|
compile: clean lint
 | 
						|
	emacs --version
 | 
						|
	emacs -batch -l test/elpa.el -l test/compile.el
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f *.elc
 | 
						|
 | 
						|
lint:
 | 
						|
	emacs --batch -l test/lint.el
 | 
						|
 | 
						|
.PHONY: update compile test clean
 |