summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorian <ian>1999-11-09 23:21:46 +0000
committerian <ian>1999-11-09 23:21:46 +0000
commitf680ebff83a1c0b0bfda2ae85ba79c40d5683076 (patch)
tree4a7c4e95a87b088b8a07d57ce29e0cb65832660d /Makefile
parent4268f152508c2cbfd0fa4b3165317a3c31ad7df1 (diff)
downloaduserv-utils-f680ebff83a1c0b0bfda2ae85ba79c40d5683076.tar.gz
make dist works
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 2f0b156..f9550d5 100644
--- a/Makefile
+++ b/Makefile
@@ -22,17 +22,19 @@ all:
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