19 lines
395 B
Makefile
19 lines
395 B
Makefile
# -*- mode: makefile-gmake; -*-
|
|
SRC := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
include ../lib/shared.mk
|
|
|
|
CONFIG_DIR := $(XDG_DIR)/jrnl
|
|
|
|
up:
|
|
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
|
|
|
|
down:
|
|
rm -rf $(CONFIG_DIR)
|