22 lines
		
	
	
		
			356 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			356 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
 | |
| forts/big_fort.txt: forts/short.txt forts/long.txt
 | |
| 		cat $^ > $@
 | |
| 
 | |
| README.md:
 | |
| 	echo "For an example makefile for python" > $@
 | |
| 	echo "check out the nd6 dice-roller at" >> $@
 | |
| 	echo "ssh -p 2222 soft.dmz.rs -t nd6" >> $@
 | |
| 
 | |
| 
 | |
| forts/: README.md
 | |
| 	mkdir -p $@
 | |
| 
 | |
| forts/short.txt: forts/
 | |
| 	fortune -s > $@
 | |
| 
 | |
| forts/long.txt: forts/
 | |
| 	fortune -l > $@
 | |
| 
 | |
| clean:
 | |
| 	rm -rf forts
 |