You've already forked pedini.dev
							
							make is good, make is life, use make now everything works with a single make (good for devops ci/cd too)
		
			
				
	
	
		
			13 lines
		
	
	
		
			114 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			114 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#!make
 | 
						|
 | 
						|
default: build
 | 
						|
 | 
						|
prep:
 | 
						|
	git submodule update --init --recursive
 | 
						|
 | 
						|
build: prep
 | 
						|
	hugo
 | 
						|
 | 
						|
run: prep
 | 
						|
	hugo server
 |