X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=Makefile;h=df3a8b07244b07d44a48b75d89102e9b8cdf397e;hb=2e082dfed76851117cafd488388a010cac25df09;hp=2f0b156798826d52cc57618ac9264469b0f737e9;hpb=4268f152508c2cbfd0fa4b3165317a3c31ad7df1;p=userv-utils.git diff --git a/Makefile b/Makefile index 2f0b156..df3a8b0 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1999 Ian Jackson +# Copyright (C) 2000 Ian Jackson # # This is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -16,23 +16,25 @@ # # $Id$ -VERSION=0.1 +VERSION=0.2.1 all: - echo >&2 'See README. This is not a unified package.' + @echo >&2 'See README. This is not a unified package.' distclean: - find . -name '*~' -o -name '#*#' -o -name '*.o' -o -name core \ - -o -name dist_tmp \ - -print0 | xargs -0r rm -- + find . \( -name '*~' -o -name '#*#' -o -name '*.o' -o -name core \ + -o -name dist_tmp -o -name userv-utils-\*.tar.gz \ + -o -name '.#*' \) \ + -print0 | xargs -0r rm -rf -- dist_tmp=dist_tmp/userv-utils-$(VERSION) +dist_prune=\( -name CVS -o -name 'dist_tmp*' \) dist: distclean rm -rf dist_tmp* mkdir dist_tmp $(dist_tmp) - find . -name dist_tmp -prune -o -type d -print | \ + find . $(dist_prune) -prune -o -type d -print | \ sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh - find . -name dist_tmp -prune -o -type f -print | \ + find . $(dist_prune) -prune -o -type f -print | \ sed -e 's#.*#ln & $(dist_tmp)/&#' | sh cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)` gzip -9 $(dist_tmp).tar