Remove all references to "make depend" from regress.
authorbluhm <bluhm@openbsd.org>
Fri, 7 Jul 2017 23:55:21 +0000 (23:55 +0000)
committerbluhm <bluhm@openbsd.org>
Fri, 7 Jul 2017 23:55:21 +0000 (23:55 +0000)
regress/Makefile
regress/lib/libedit/chared/test_gets.c
regress/lib/libedit/keymacro/test_get.c
regress/lib/libpthread/Makefile
regress/sbin/pfctl/Makefile
regress/sbin/route/Makefile
regress/usr.bin/cvs/Makefile
regress/usr.bin/mandoc/db/mlinks/mlinks.1
regress/usr.sbin/arp/Makefile

index 1e6970f..ef9989b 100644 (file)
@@ -1,9 +1,8 @@
-#      $OpenBSD: Makefile,v 1.21 2014/11/24 01:12:14 schwarze Exp $
+#      $OpenBSD: Makefile,v 1.22 2017/07/07 23:55:21 bluhm Exp $
 
 #
-# To run full regression tests you just need two steps:
-# 1. make depend
-# 2. make regress
+# To run full regression tests you just need one step:
+# make regress
 #
 # A normal "make" is not necessary and will simply do the same thing
 # as "regress" (possibly with more bugs). This allows us to include
index 4030329..f8c918e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test_gets.c,v 1.4 2017/07/05 15:31:45 bluhm Exp $     */
+/*     $OpenBSD: test_gets.c,v 1.5 2017/07/07 23:55:21 bluhm Exp $     */
 /*
  * Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -29,7 +29,6 @@
  * Rather than linking in all the various libedit modules,
  * provide dummies for those functions called in chared.c.
  * Most aren't actually called in c_gets().
- * Requires "make obj && make depend" in src/lib/libedit.
  */
 
 #define EL EditLine *el __attribute__((__unused__))
index 0b3e3be..12ec760 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test_get.c,v 1.4 2017/07/05 15:31:45 bluhm Exp $      */
+/*     $OpenBSD: test_get.c,v 1.5 2017/07/07 23:55:21 bluhm Exp $      */
 /*
  * Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -24,7 +24,6 @@
  * Rather than linking in all the various libedit modules,
  * provide dummies for those functions called in keymacro.c.
  * Most aren't actually called in keymacro_get().
- * Requires "make obj && make depend" in src/lib/libedit.
  */
 
 #define EL EditLine *el __attribute__((__unused__))
index da38443..87bbc06 100644 (file)
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.47 2016/05/10 03:59:55 guenther Exp $
+# $OpenBSD: Makefile,v 1.48 2017/07/07 23:55:21 bluhm Exp $
 
 # disabled because it requires a buggy behavior that uthread had:
 #      dup2_race
@@ -35,7 +35,7 @@ install:
 .PHONY: testall
 testall:
        rm -f /tmp/thread-{shared,static,debug}
-       make cleandir && make obj && make depend && \
+       make cleandir && make obj && \
        REGRESS_LOG=/tmp/thread-shared make
        (export LDFLAGS="-static ${NOPIE_LDFLAGS}"; make clean && \
         REGRESS_LOG=/tmp/thread-static make)
index c3b650c..d536ff6 100644 (file)
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.224 2016/09/30 14:27:52 otto Exp $
+# $OpenBSD: Makefile,v 1.225 2017/07/07 23:55:21 bluhm Exp $
 
 # TARGETS
 # pf: feed pfNN.in through pfctl and check whether the output matches pfNN.ok
@@ -36,7 +36,7 @@ SHELL=/bin/sh
 
 .MAIN: all
 
-.ifmake !obj && !clean && !cleandir && !depend && !regress
+.ifmake !obj && !clean && !cleandir && !regress
 .if (${.TARGET} != all && ! make(all)) || (${.TARGET} == all)
 .BEGIN:
        -${SUDO} ifconfig lo1000000 create
index cf394a8..269ce87 100644 (file)
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.15 2017/05/30 11:57:59 bluhm Exp $
+# $OpenBSD: Makefile,v 1.16 2017/07/07 23:55:21 bluhm Exp $
 
 RDOMAIN?=      5
 
 .MAIN: all
 
-.ifmake !obj && !clean && !cleandir && !depend && !regress
+.ifmake !obj && !clean && !cleandir && !regress
 .if (${.TARGET} != all && ! make(all)) || (${.TARGET} == all)
 
 .SILENT: .BEGIN .END
index cbfe6cb..a02ca02 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile,v 1.31 2016/09/30 22:11:37 bluhm Exp $
+#      $OpenBSD: Makefile,v 1.32 2017/07/07 23:55:21 bluhm Exp $
 
 # Regression tests by Niall O'Higgins <niallo@openbsd.org> and
 # Tobias Stoeckmann <tobias@openbsd.org>.
@@ -348,7 +348,6 @@ clean:
 # opencvs is not linked to the build, so make it on demand as a workaround
 ${OPENCVS}:
        cd ${BSDSRCDIR}/usr.bin/cvs && ${MAKE} obj
-       cd ${BSDSRCDIR}/usr.bin/cvs && ${MAKE} depend
        cd ${BSDSRCDIR}/usr.bin/cvs && ${MAKE} all
 
 .include <bsd.regress.mk>
index da76ac2..9aa6480 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: mlinks.1,v 1.3 2016/11/05 16:06:12 bcook Exp $
+.\"    $OpenBSD: mlinks.1,v 1.4 2017/07/07 23:55:21 bluhm Exp $
 .\"
 .\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
 .\"
@@ -14,7 +14,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd $Mdocdate: November 5 2016 $
+.Dd $Mdocdate: July 7 2017 $
 .Dt MLINKS 1
 .Os
 .Sh NAME
@@ -74,7 +74,6 @@ Typical usage looks like this:
 .Bd -literal -offset indent
 cd /usr/src/usr.bin/mandoc/
 make obj
-make depend
 make
 cd /usr/src/regress/usr.bin/mandoc/db/mlinks/
 make obj
index d0a77d5..0350a7b 100644 (file)
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.2 2016/03/24 15:15:41 mpi Exp $
+# $OpenBSD: Makefile,v 1.3 2017/07/07 23:55:21 bluhm Exp $
 
 RDOMAIN?=      5
 VETHER_MAC=    fe:e1:ba:d2:a3:18
@@ -8,7 +8,7 @@ OTHER_MAC=      cc:77:55:22:aa:66
 
 .MAIN: all
 
-.ifmake !obj && !clean && !cleandir && !depend && !regress
+.ifmake !obj && !clean && !cleandir && !regress
 .if (${.TARGET} != all && ! make(all)) || (${.TARGET} == all)
 
 .SILENT: .BEGIN .END .INTERRUPT