mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			256 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			256 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: install deinstall refresh
 | 
						|
 | 
						|
install:
 | 
						|
	$(MAKE) -C sphinx html $(MAKEFLAGS)
 | 
						|
	$(MAKE) -C sphinx install $(MAKEFLAGS)
 | 
						|
 | 
						|
deinstall:
 | 
						|
	$(MAKE) -C sphinx clean $(MAKEFLAGS)
 | 
						|
 | 
						|
refresh:
 | 
						|
	$(MAKE) -C sphinx clean $(MAKEFLAGS)
 | 
						|
	$(MAKE) -C sphinx html $(MAKEFLAGS)
 |