20 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all: tup
 | 
						|
 | 
						|
tup:
 | 
						|
	tup build
 | 
						|
 | 
						|
preview: tup
 | 
						|
	rm -rf preview
 | 
						|
	cp -r build preview
 | 
						|
	rm -f preview/tup.config
 | 
						|
 | 
						|
clean:
 | 
						|
	git nuke
 | 
						|
 | 
						|
graph:
 | 
						|
	tup graph . | dot -Tpng > graph.png
 | 
						|
 | 
						|
deploy: clean tup
 | 
						|
	rsync --checksum --copy-links -ave 'ssh -p 4242' \
 | 
						|
		--exclude-from=rsync_excludes.txt \
 | 
						|
		build/* fab@ffreling.com:public_html/ffreling.com/public/
 |