chiark / gitweb /
@@ -6,6 +6,7 @@
[userv-utils] / Makefile
CommitLineData
77207488 1# Copyright (C) 2000 Ian Jackson
1941622d 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#
f4562dd7 17# $Id: Makefile,v 1.9 2000/12/11 02:46:04 ian Exp $
1941622d 18
c852886b 19VERSION=0.2.1
1941622d 20
21all:
103cf040 22 @echo >&2 'See README. This is not a unified package.'
1941622d 23
f4562dd7 24SUBDIRS_DISTCLEAN= www-cgi ipif
25
1941622d 26distclean:
b1c6c935 27 find . \( -name '*~' -o -name '#*#' -o -name '*.o' -o -name core \
28 -o -name dist_tmp -o -name userv-utils-\*.tar.gz \
29 -o -name '.#*' \) \
30 -print0 | xargs -0r rm -rf --
f4562dd7 31 for f in $(SUBDIRS_DISTCLEAN); do make -C $$f distclean; done
1941622d 32
33dist_tmp=dist_tmp/userv-utils-$(VERSION)
b1c6c935 34dist_prune=\( -name CVS -o -name 'dist_tmp*' \)
1941622d 35dist: distclean
36 rm -rf dist_tmp*
37 mkdir dist_tmp $(dist_tmp)
b1c6c935 38 find . $(dist_prune) -prune -o -type d -print | \
1941622d 39 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
b1c6c935 40 find . $(dist_prune) -prune -o -type f -print | \
1941622d 41 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
42 cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
43 gzip -9 $(dist_tmp).tar
44 mv $(dist_tmp).tar.gz .