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