14 lines
		
	
	
		
			475 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			475 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
html:
 | 
						|
	pandoc -s aprs_digipeater.md --toc --toc-depth=1 -c ./css/mvp.css \
 | 
						|
	--template ./template/template.html -o aprs_digipeater.html
 | 
						|
 | 
						|
installation_guide:
 | 
						|
	pandoc -s installation_pe1rxf_aprs_weather_server.md --toc --toc-depth=1 -c ./css/mvp.css \
 | 
						|
	--template ./template/template.html -o installation_pe1rxf_aprs_weather_server.html
 | 
						|
 | 
						|
pdf:
 | 
						|
	pandoc aprs_digipeater.md --toc -o aprs_digipeater.pdf --pdf-engine=xelatex -H ./template/custom_settings.tex
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rvf build
 |