mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-04 06:49:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			283 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			283 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.DEFAULT_GOAL := serve
 | 
						|
 | 
						|
help: ## Show all Makefile targets
 | 
						|
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
 | 
						|
 | 
						|
serve: ## serve
 | 
						|
	hugo-obsidian -input=content -output=static -index -root=. && hugo server
 |