chiark / gitweb /
Version 0.2.0
[userv-utils.git] / Makefile
1 # Copyright (C) 2000 Ian Jackson
2 #
3 # This is free software; you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with userv-utils; if not, write to the Free Software
15 # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 #
17 # $Id$
18
19 VERSION=0.2.0
20
21 all:
22         @echo >&2 'See README.  This is not a unified package.'
23
24 distclean:
25         find . \( -name '*~' -o -name '#*#' -o -name '*.o' -o -name core \
26                 -o -name dist_tmp -o -name userv-utils-\*.tar.gz \
27                 -o -name '.#*' \) \
28                 -print0 | xargs -0r rm -rf --
29
30 dist_tmp=dist_tmp/userv-utils-$(VERSION)
31 dist_prune=\( -name CVS -o -name 'dist_tmp*' \)
32 dist:                   distclean
33         rm -rf dist_tmp*
34         mkdir dist_tmp $(dist_tmp)
35         find . $(dist_prune) -prune -o -type d -print | \
36                 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
37         find . $(dist_prune) -prune -o -type f -print | \
38                 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
39         cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
40         gzip -9 $(dist_tmp).tar
41         mv $(dist_tmp).tar.gz .