summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/compile/rebuild_all
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 03:54:39 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 03:54:39 +0000
commitf12226068d16673eea9adafe99388f1061d3309f (patch)
tree90cb542d279e793d072ffc6e9f1f1add1f07179e /sys/arch/alpha/compile/rebuild_all
parent470d0389b66fade522060561cc0c6ba36e01e7cb (diff)
update to netbsd
Diffstat (limited to 'sys/arch/alpha/compile/rebuild_all')
-rw-r--r--sys/arch/alpha/compile/rebuild_all23
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/arch/alpha/compile/rebuild_all b/sys/arch/alpha/compile/rebuild_all
new file mode 100644
index 00000000000..fd619a5bcd5
--- /dev/null
+++ b/sys/arch/alpha/compile/rebuild_all
@@ -0,0 +1,23 @@
+#!/bin/sh -
+
+dirlist=`find . -type d ! \( -name . -o -name CVS \) -prune | \
+ sed -e s,./,, | sort`
+
+for dir in $dirlist; do
+ echo === $dir
+ echo ""
+ echo "***"
+ echo ""
+ (cd $dir ; time make -k clean)
+ echo ""
+ echo "***"
+ echo ""
+ (cd $dir ; time make -k depend)
+ echo ""
+ echo "***"
+ echo ""
+ (cd $dir ; time make -k)
+ echo ""
+ echo "***"
+ echo ""
+done