mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			191 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			191 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: install deinstall refresh
 | |
| 
 | |
| install:
 | |
| 	$(MAKE) -C sphinx html
 | |
| 	$(MAKE) -C sphinx install
 | |
| 
 | |
| deinstall:
 | |
| 	$(MAKE) -C sphinx clean
 | |
| 
 | |
| refresh:
 | |
| 	$(MAKE) -C sphinx clean
 | |
| 	$(MAKE) -C sphinx html
 |