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