summaryrefslogtreecommitdiff
path: root/dotfiles-darwin/launchd/Makefile
blob: 83d0c81ba8b4cbb8b59376860a9b4afcc0949525 (plain)
1
2
3
4
5
6
7
8
9
export ZSH    := $(shell which zsh)
export ENV_SH := $(realpath ../bin/env.sh)

all: $(foreach plist, $(wildcard *.plist), ~/Library/LaunchAgents/${plist})

~/Library/LaunchAgents/%.plist: %.plist
	envsubst < $< >$@
	-launchctl unload $@ 2>/dev/null
	launchctl load $@