15 lines
		
	
	
		
			129 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			129 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .POSIX:
 | |
| 
 | |
| .SUFFIXES:
 | |
| .SUFFIXES: .test
 | |
| 
 | |
| all: bare luks lvm zfs
 | |
| 
 | |
| .test:
 | |
| 	./$< > $@.out 2>&1
 | |
| 
 | |
| clean:
 | |
| 	rm -f *.out
 | |
| 
 | |
| .PHONY: all clean
 |