# Config Files Makefile
# Author: Sean B. Palmer, inamidst.com
# URI: http://inamidst.com/config/Makefile

all: sync

emacs: force
	-emacs -batch -f batch-byte-compile emacs
	# @@ On Linux, it's -r for extended regexp not -E
	-sed -Ei '' 's/sbp@[^ ]+/sbp@localhost/' emacs.elc

zsh: force
	-zsh -c "zcompile zshrc"
	-chmod 644 zshrc.zwc
	-zsh -c "zcompile zshenv"
	-chmod 644 zshenv.zwc
	-zsh -c "zcompile zlogin"
	-chmod 644 zlogin.zwc

sync: force
	./sync

force: ;

# [EOF]
