dull dependency for copying makegap.sh to obj, so that installs
authorderaadt <deraadt@openbsd.org>
Sun, 25 Jun 2017 14:02:21 +0000 (14:02 +0000)
committerderaadt <deraadt@openbsd.org>
Sun, 25 Jun 2017 14:02:21 +0000 (14:02 +0000)
without src and comp work.  That is what we've designed for, but since
we always have src and comp on our systems it is so easy to slide...
problem first noted by rpe.

12 files changed:
sys/arch/alpha/conf/Makefile.alpha
sys/arch/amd64/conf/Makefile.amd64
sys/arch/arm64/conf/Makefile.arm64
sys/arch/armv7/conf/Makefile.armv7
sys/arch/hppa/conf/Makefile.hppa
sys/arch/i386/conf/Makefile.i386
sys/arch/landisk/conf/Makefile.landisk
sys/arch/loongson/conf/Makefile.loongson
sys/arch/macppc/conf/Makefile.macppc
sys/arch/octeon/conf/Makefile.octeon
sys/arch/sgi/conf/Makefile.sgi
sys/arch/sparc64/conf/Makefile.sparc64

index d081766..a5b7352 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.alpha,v 1.102 2017/06/22 16:01:45 deraadt Exp $
+#      $OpenBSD: Makefile.alpha,v 1.103 2017/06/25 14:02:21 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -121,7 +121,7 @@ ioconf.o: ioconf.c
 ld.script: ${_machdir}/conf/ld.script
        cp ${_machdir}/conf/ld.script $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh
index 5d8ae7d..fd831d3 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.amd64,v 1.85 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.amd64,v 1.86 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -124,7 +124,7 @@ ioconf.o: ioconf.c
 ld.script: ${_machdir}/conf/ld.script
        cp ${_machdir}/conf/ld.script $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh
index be24a6c..b320d95 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.arm64,v 1.15 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.arm64,v 1.16 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -128,7 +128,7 @@ gapdummy.o:
        echo 'const char gapdummy;' > gapdummy.c
        ${CC} -c ${CFLAGS} ${CPPFLAGS} gapdummy.c -o $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh gapdummy.o
index 0acdd50..dfef4e3 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.armv7,v 1.28 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.armv7,v 1.29 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -126,7 +126,7 @@ gapdummy.o:
        echo 'const char gapdummy;' > gapdummy.c
        ${CC} -c ${CFLAGS} ${CPPFLAGS} gapdummy.c -o $@
 
-makegap.sh: Makefile $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh gapdummy.o
index 3e0a0d8..dbe32e7 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.hppa,v 1.96 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.hppa,v 1.97 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -129,7 +129,7 @@ ioconf.o: ioconf.c
 ld.script: ${_machdir}/conf/ld.script
        cp ${_machdir}/conf/ld.script $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh
index 9b2c40e..02707bc 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.i386,v 1.111 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.i386,v 1.112 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -125,7 +125,7 @@ ioconf.o: ioconf.c
 ld.script: ${_machdir}/conf/ld.script
        cp ${_machdir}/conf/ld.script $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh
index 83c2b17..94e7b09 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.landisk,v 1.68 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.landisk,v 1.69 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -121,7 +121,7 @@ ioconf.o: ioconf.c
 ld.script: ${_machdir}/conf/ld.script
        cp ${_machdir}/conf/ld.script $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh
index 84750f4..762d806 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.loongson,v 1.61 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.loongson,v 1.62 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -130,7 +130,7 @@ gapdummy.o:
        echo 'const char gapdummy;' > gapdummy.c
        ${CC} -c ${CFLAGS} ${CPPFLAGS} gapdummy.c -o $@
 
-makegap.sh: Makefile $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh gapdummy.o
index a3c3047..b98eba5 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.macppc,v 1.84 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.macppc,v 1.85 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -121,7 +121,7 @@ ioconf.o: ioconf.c
 ld.script: ${_machdir}/conf/ld.script
        cp ${_machdir}/conf/ld.script $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh
index 4bebc8c..3de8294 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.octeon,v 1.37 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.octeon,v 1.38 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -131,7 +131,7 @@ gapdummy.o:
        echo 'const char gapdummy;' > gapdummy.c
        ${CC} -c ${CFLAGS} ${CPPFLAGS} gapdummy.c -o $@
 
-makegap.sh: Makefile $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh gapdummy.o
index c077d67..b9ede55 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.sgi,v 1.85 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.sgi,v 1.86 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -130,7 +130,7 @@ gapdummy.o:
        echo 'const char gapdummy;' > gapdummy.c
        ${CC} -c ${CFLAGS} ${CPPFLAGS} gapdummy.c -o $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh gapdummy.o
index f9ca4b9..1a3de32 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.sparc64,v 1.88 2017/06/22 16:01:48 deraadt Exp $
+#      $OpenBSD: Makefile.sparc64,v 1.89 2017/06/25 14:02:23 deraadt Exp $
 
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
@@ -119,7 +119,7 @@ ioconf.o: ioconf.c
 ld.script: ${_machdir}/conf/ld.script
        cp ${_machdir}/conf/ld.script $@
 
-makegap.sh: $S/conf/makegap.sh
+makegap.sh:
        cp $S/conf/makegap.sh $@
 
 gap.o: Makefile makegap.sh