* kbuild (MAKETARGETS): default to "all check" for make, but allow
authorMark Eichin <eichin@mit.edu>
Tue, 11 Oct 1994 23:09:08 +0000 (23:09 +0000)
committerMark Eichin <eichin@mit.edu>
Tue, 11 Oct 1994 23:09:08 +0000 (23:09 +0000)
override from config fragments.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4490 dc483132-0cff-0310-8789-dd5450dbe970

src/util/ChangeLog
src/util/kbuild

index d14b2c59766394f5a38e2bd10f4cdcacb88535e7..d76cbcb1158e4318628590c964034e1a65854109 100644 (file)
@@ -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
index 6b55518a15322e06d788f4a3b01913eff1340e0c..7d24abe4369d7475f5b5c519356e26c64a8dc359 100644 (file)
@@ -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