summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/ChangeLog5
-rw-r--r--src/util/kbuild5
2 files changed, 8 insertions, 2 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog
index d14b2c5976..d76cbcb115 100644
--- a/src/util/ChangeLog
+++ b/src/util/ChangeLog
@@ -1,3 +1,8 @@
+Tue Oct 11 19:07:09 1994 Mark Eichin (eichin@cygnus.com)
+
+ * kbuild (MAKETARGETS): default to "all check" for make, but allow
+ override from config fragments.
+
Mon Oct 3 23:36:12 1994 Theodore Y. Ts'o (tytso@dcl)
* configure.in: Don't build unifdef directory --- we don't need it
diff --git a/src/util/kbuild b/src/util/kbuild
index 6b55518a15..7d24abe436 100644
--- a/src/util/kbuild
+++ b/src/util/kbuild
@@ -79,6 +79,7 @@ do
done
CONFIG_OPTS="-v"
+MAKETARGETS="all check"
# echo ==== THISCONF: =====
# cat $THISCONF
# echo --------------------
@@ -153,7 +154,7 @@ echo "configuring with: $SRCDIR/configure $CONFIG_OPTS"
$SRCDIR/configure $CONFIG_OPTS
echo "Configuration done. Building using the command:"
-echo " (setenv PATH $PATH; make)"
+echo " (setenv PATH $PATH; make $MAKETARGETS)"
echo " "
-make
+make $MAKETARGETS