16 lines
		
	
	
		
			392 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			392 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| 
 | |
| all: template.html content.txt timeline.css
 | |
| 	python microblog.py ./template.html ./content.txt > result.html
 | |
| 
 | |
| # for people who don't want to read the README 
 | |
| # and want to hit `make` to see how things work.
 | |
| template.html:
 | |
| 	cp ./example/template-generic.html ./template.html
 | |
| 
 | |
| timeline.css:
 | |
| 	cp ./example/timeline-generic.css ./timeline.css
 | |
| 
 | |
| content.txt:
 | |
| 	cp ./example/demo.txt ./content.txt
 |