24 lines
		
	
	
		
			414 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			414 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| 
 | |
| all: demo tpl css settings
 | |
| 	python microblog.py ./template.tpl ./content.txt > result.html
 | |
| 
 | |
| tpl:
 | |
| 	cp ./example/default.tpl ./template.tpl
 | |
| 
 | |
| css:
 | |
| 	cp ./example/timeline.css ./timeline.css
 | |
| 
 | |
| demo:
 | |
| 	cp ./example/demo.txt ./content.txt
 | |
| 
 | |
| settings:
 | |
| 	cp ./example/settings.toml ./settings.toml
 | |
| 
 | |
| .PHONY: clean
 | |
| clean: 
 | |
| 	rm ./pages/*.html 
 | |
| 	rm ./tags/*/*.html 
 | |
| 	rm ./webring/*.html 
 | |
| 	rmdir ./pages ./tags/* ./tags ./webring
 |