]> arthur.barton.de Git - ConfigScripts.git/blob - Makefile
Prepend /usr/local/opt/ccache/libexec to $PATH, when available
[ConfigScripts.git] / Makefile
1 #
2 # ConfigScripts - Makefile
3 # Written by Alexander Barton <alex@barton.de>. Public Domain.
4 #
5
6 NAME=ConfigScripts
7
8 all:
9
10 install:
11         sh ./install.sh
12
13 install-local:
14         sh ./install.sh --local
15
16 clean:
17
18 check:
19
20 dist: clean
21         tar cvzf $(NAME).tar.gz \
22          --exclude ".git" --exclude "*.tar.gz" --exclude "*.tgz" \
23          --exclude "._*" --exclude "*~" --exclude "*.bak" \
24          ../`basename $$PWD`
25
26 # -eof-