summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorian <ian>2000-12-11 02:46:04 +0000
committerian <ian>2000-12-11 02:46:04 +0000
commitc62ccbd5747bc841fd181e53b896647b73108c9e (patch)
treeac03800abf899024033c782ff74e48aab9468a9c /Makefile
parent2e082dfed76851117cafd488388a010cac25df09 (diff)
downloaduserv-utils-c62ccbd5747bc841fd181e53b896647b73108c9e.tar.gz
@@ -1,11 +1,12 @@
userv-utils (0.2.1) unstable; urgency=low - * service.c (userv ipif) /32 prefixes work properly now. - * New udptunnel-reconf program for generating invoke scripts, inittab - entries, and the like. + entries, and the like, for a multi-host VPN. + + * service.c (userv ipif) /32 prefixes work properly now. + * `make distclean' works in ipif, www-cgi and top level. - -- + -- Ian Jackson <ian@davenant.greenend.org.uk> Mon, 11 Dec 2000 02:45:58 +0000 userv-utils (0.2.0) unstable; urgency=low
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index df3a8b0..f483bc4 100644
--- a/Makefile
+++ b/Makefile
@@ -21,11 +21,14 @@ VERSION=0.2.1
all:
@echo >&2 'See README. This is not a unified package.'
+SUBDIRS_DISTCLEAN= www-cgi ipif
+
distclean:
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 --
+ for f in $(SUBDIRS_DISTCLEAN); do make -C $$f distclean; done
dist_tmp=dist_tmp/userv-utils-$(VERSION)
dist_prune=\( -name CVS -o -name 'dist_tmp*' \)