mirror of
				https://github.com/Zygo/bees.git
				synced 2025-11-03 19:50:34 +01:00 
			
		
		
		
	Split the rather large README into smaller sections with a pitch and a ToC at the top. Move the sections into docs/ so that Github Pages can read them. 'make doc' produces a local HTML tree. Update the kernel bugs and gotchas list. Add some information that has been accumulating in Github comments. Remove information about bugs in kernels earlier than 4.14. Signed-off-by: Zygo Blaxell <bees@furryterror.org>
		
			
				
	
	
		
			9 lines
		
	
	
		
			256 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			256 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
MARKDOWN := $(firstword $(shell type -P markdown markdown2 markdown_py 2>/dev/null || echo markdown))
 | 
						|
.PHONY: docs
 | 
						|
 | 
						|
docs: $(subst .md,.html,$(wildcard *.md)) ../README.html
 | 
						|
 | 
						|
%.html: %.md
 | 
						|
	$(MARKDOWN) $< | sed -e 's/\.md/\.html/g' > $@.new
 | 
						|
	mv -f $@.new $@
 |