]> arthur.barton.de Git - ConfigScripts.git/blob - Makefile
Initial import into GIT repository.
[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 clean:
14
15 check:
16
17 dist: clean
18         tar cvzf $(NAME).tar.gz \
19          --exclude ".git" --exclude "*.tar.gz" --exclude "*.tgz" \
20          --exclude "._*" --exclude "*~" --exclude "*.bak" \
21          ../`basename $$PWD`
22
23 # -eof-