mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +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)
 |