This makes it a hell of a lot simpler but will lose support for BSD make. All effected machines are running gnu-make, so the cost benefit ratio ways heavily in favor of doing this.
		
			
				
	
	
		
			22 lines
		
	
	
		
			398 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			398 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SRC := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
 | 
						|
 | 
						|
include ../lib/shared.mk
 | 
						|
 | 
						|
CONFIG_DIR :=  $(XDG_DIR)/jrnl
 | 
						|
 | 
						|
install: | init update
 | 
						|
 | 
						|
init:
 | 
						|
	if (( $$+commands[jrnl] )) ; then
 | 
						|
		$(report) header "Setting up jrnl"
 | 
						|
		mkdir $(CONFIG_DIR)
 | 
						|
		$(mk_link) $(SRC)/jrnl.yml $(CONFIG_DIR)/jrnl.yml
 | 
						|
	else
 | 
						|
		$(report) debug "jrnl not installed. Skipping."
 | 
						|
	fi
 | 
						|
 | 
						|
endif
 | 
						|
 | 
						|
remove:
 | 
						|
	rm -rf $(CONFIG_DIR)
 |