blob: cad2e9aefdc53018c2d18a008622b0662326397a (
plain)
1
2
3
4
5
6
7
8
9
|
export ENV_SH := $(realpath ../bin/env.sh)
AGENTS_DIR := ~/Library/LaunchAgents
all: $(foreach plist, $(wildcard *.json), $(AGENTS_DIR)/$(plist:json=plist))
$(AGENTS_DIR)/%.plist: %.json
plutil -convert xml1 -o $@ - <<< $$(envsubst < $<)
-launchctl unload $@ 2>/dev/null
launchctl load $@
|