# # ConfigScripts - Makefile # Written by Alexander Barton . Public Domain. # NAME=ConfigScripts all: install: sh ./install.sh install-local: sh ./install.sh --local clean: check: dist: clean tar cvzf $(NAME).tar.gz \ --exclude ".git" --exclude "*.tar.gz" --exclude "*.tgz" \ --exclude "._*" --exclude "*~" --exclude "*.bak" \ ../`basename $$PWD` # -eof-