summaryrefslogtreecommitdiff
path: root/packaging/Caldera/UnixWare/Clean
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2001-06-01 12:24:11 +0000
committerGerald Carter <jerry@samba.org>2001-06-01 12:24:11 +0000
commit0e40dbf86bd60f7eb057a27f56cded4f689c6747 (patch)
treeba563fed292816c03ae1253e545c6f961cbe59ca /packaging/Caldera/UnixWare/Clean
parent26bc8adcaa94a5a76710d1003d3828982fff33ac (diff)
downloadsamba-0e40dbf86bd60f7eb057a27f56cded4f689c6747.tar.gz
samba-0e40dbf86bd60f7eb057a27f56cded4f689c6747.tar.bz2
samba-0e40dbf86bd60f7eb057a27f56cded4f689c6747.zip
sync with SAMBA_2_2
(This used to be commit 720ec55c175bd9df5832085066d1e68b2684a8a2)
Diffstat (limited to 'packaging/Caldera/UnixWare/Clean')
-rwxr-xr-xpackaging/Caldera/UnixWare/Clean22
1 files changed, 22 insertions, 0 deletions
diff --git a/packaging/Caldera/UnixWare/Clean b/packaging/Caldera/UnixWare/Clean
new file mode 100755
index 0000000000..fe4eed2527
--- /dev/null
+++ b/packaging/Caldera/UnixWare/Clean
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# Cleanup after having configured, compiled, installed and packaged.
+# Careful - running this script attempts to restore this hierarchy to
+# freshly unpacked source
+#
+# Invoke as "./Clean -n" to get this script to tell you what it would do
+# without doing anything
+#
+
+V=
+[ "$1" = "-n" ] && V=echo
+
+[ -d dist ] && $V rm -rf dist
+[ -f ../../../source/Makefile ] && {
+ $V cd ../../../source
+ $V rm -f bin/locktest bin/masktest bin/smbsh bin/debug2html \
+ bin/locktest2 bin/smbfilter bin/smbtorture
+ $V make clean
+ $V make distclean
+ $V rm -f mout*
+}