summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-04-27 04:31:49 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-04-27 04:31:49 +0000
commit95c0b1557b471ebea0eee6d72753f60d88719eb3 (patch)
tree6d51a5fc8dafa5a3c4af2a739794cc06ea272642 /sys
parentdc7e773a3cb1329ffdd087bd35889b2082d8d5f8 (diff)
use -f assymp.dep again; worked out with miod
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/alpha/conf/Makefile.alpha5
-rw-r--r--sys/arch/amd64/conf/Makefile.amd645
-rw-r--r--sys/arch/armish/conf/Makefile.armish5
-rw-r--r--sys/arch/aviion/conf/Makefile.aviion5
-rw-r--r--sys/arch/beagle/conf/Makefile.beagle5
-rw-r--r--sys/arch/gumstix/conf/Makefile.gumstix5
-rw-r--r--sys/arch/hp300/conf/Makefile.hp3005
-rw-r--r--sys/arch/hppa/conf/Makefile.hppa5
-rw-r--r--sys/arch/hppa64/conf/Makefile.hppa645
-rw-r--r--sys/arch/i386/conf/Makefile.i3865
-rw-r--r--sys/arch/landisk/conf/Makefile.landisk5
-rw-r--r--sys/arch/loongson/conf/Makefile.loongson5
-rw-r--r--sys/arch/luna88k/conf/Makefile.luna88k5
-rw-r--r--sys/arch/mac68k/conf/Makefile.mac68k5
-rw-r--r--sys/arch/macppc/conf/Makefile.macppc5
-rw-r--r--sys/arch/moko/conf/Makefile.moko5
-rw-r--r--sys/arch/mvme68k/conf/Makefile.mvme68k5
-rw-r--r--sys/arch/mvme88k/conf/Makefile.mvme88k5
-rw-r--r--sys/arch/mvmeppc/conf/Makefile.mvmeppc5
-rw-r--r--sys/arch/palm/conf/Makefile.palm5
-rw-r--r--sys/arch/sgi/conf/Makefile.sgi5
-rw-r--r--sys/arch/socppc/conf/Makefile.socppc5
-rw-r--r--sys/arch/solbourne/conf/Makefile.solbourne5
-rw-r--r--sys/arch/sparc/conf/Makefile.sparc5
-rw-r--r--sys/arch/sparc64/conf/Makefile.sparc645
-rw-r--r--sys/arch/vax/conf/Makefile.vax5
-rw-r--r--sys/arch/zaurus/conf/Makefile.zaurus5
27 files changed, 54 insertions, 81 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha
index 8ebb6a67063..3fcce27eeb2 100644
--- a/sys/arch/alpha/conf/Makefile.alpha
+++ b/sys/arch/alpha/conf/Makefile.alpha
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.alpha,v 1.52 2010/04/27 03:41:54 deraadt Exp $
+# $OpenBSD: Makefile.alpha,v 1.53 2010/04/27 04:31:45 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -156,8 +156,7 @@ depend:: .depend
param.c ioconf.c ${CFILES}
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/amd64/conf/Makefile.amd64 b/sys/arch/amd64/conf/Makefile.amd64
index 85b8b376860..ddefa3e93a7 100644
--- a/sys/arch/amd64/conf/Makefile.amd64
+++ b/sys/arch/amd64/conf/Makefile.amd64
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.amd64,v 1.27 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.amd64,v 1.28 2010/04/27 04:31:45 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -166,8 +166,7 @@ depend:: .depend
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/armish/conf/Makefile.armish b/sys/arch/armish/conf/Makefile.armish
index a3415e03235..c7248765c17 100644
--- a/sys/arch/armish/conf/Makefile.armish
+++ b/sys/arch/armish/conf/Makefile.armish
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.armish,v 1.17 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.armish,v 1.18 2010/04/27 04:31:45 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -178,8 +178,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/aviion/conf/Makefile.aviion b/sys/arch/aviion/conf/Makefile.aviion
index 2568261084d..bbc388b62d1 100644
--- a/sys/arch/aviion/conf/Makefile.aviion
+++ b/sys/arch/aviion/conf/Makefile.aviion
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.aviion,v 1.15 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.aviion,v 1.16 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -165,8 +165,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/beagle/conf/Makefile.beagle b/sys/arch/beagle/conf/Makefile.beagle
index 367879b3865..371089140ae 100644
--- a/sys/arch/beagle/conf/Makefile.beagle
+++ b/sys/arch/beagle/conf/Makefile.beagle
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.beagle,v 1.12 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.beagle,v 1.13 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -175,8 +175,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o:.* /assym.h: /' < assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/gumstix/conf/Makefile.gumstix b/sys/arch/gumstix/conf/Makefile.gumstix
index d14af5aadc9..f8423f39651 100644
--- a/sys/arch/gumstix/conf/Makefile.gumstix
+++ b/sys/arch/gumstix/conf/Makefile.gumstix
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.gumstix,v 1.10 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.gumstix,v 1.11 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -176,8 +176,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/hp300/conf/Makefile.hp300 b/sys/arch/hp300/conf/Makefile.hp300
index 4158640e4b7..7e648f0bf65 100644
--- a/sys/arch/hp300/conf/Makefile.hp300
+++ b/sys/arch/hp300/conf/Makefile.hp300
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.hp300,v 1.52 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.hp300,v 1.53 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -195,8 +195,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
fi
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/hppa/conf/Makefile.hppa b/sys/arch/hppa/conf/Makefile.hppa
index 31352775b1c..9edf212ce71 100644
--- a/sys/arch/hppa/conf/Makefile.hppa
+++ b/sys/arch/hppa/conf/Makefile.hppa
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.hppa,v 1.42 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.hppa,v 1.43 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -178,8 +178,7 @@ SRCS= ${_machdir}/hppa/locore.S \
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
fi
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/hppa64/conf/Makefile.hppa64 b/sys/arch/hppa64/conf/Makefile.hppa64
index 44acf403f44..01bc9847a89 100644
--- a/sys/arch/hppa64/conf/Makefile.hppa64
+++ b/sys/arch/hppa64/conf/Makefile.hppa64
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.hppa64,v 1.16 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.hppa64,v 1.17 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -158,8 +158,7 @@ SRCS= ${_machdir}/hppa64/locore.S \
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
fi
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/i386/conf/Makefile.i386 b/sys/arch/i386/conf/Makefile.i386
index 13bd508858e..9585ca813b9 100644
--- a/sys/arch/i386/conf/Makefile.i386
+++ b/sys/arch/i386/conf/Makefile.i386
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.i386,v 1.59 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.i386,v 1.60 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -169,8 +169,7 @@ depend:: .depend
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/landisk/conf/Makefile.landisk b/sys/arch/landisk/conf/Makefile.landisk
index 6c9315bcb0e..fe79d925cf0 100644
--- a/sys/arch/landisk/conf/Makefile.landisk
+++ b/sys/arch/landisk/conf/Makefile.landisk
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.landisk,v 1.17 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.landisk,v 1.18 2010/04/27 04:31:46 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -164,8 +164,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/loongson/conf/Makefile.loongson b/sys/arch/loongson/conf/Makefile.loongson
index 187cd134d10..cc175459abc 100644
--- a/sys/arch/loongson/conf/Makefile.loongson
+++ b/sys/arch/loongson/conf/Makefile.loongson
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.loongson,v 1.8 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.loongson,v 1.9 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config ``machineid''
@@ -160,8 +160,7 @@ depend:: .depend
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/luna88k/conf/Makefile.luna88k b/sys/arch/luna88k/conf/Makefile.luna88k
index 3229d176724..f89486fcb42 100644
--- a/sys/arch/luna88k/conf/Makefile.luna88k
+++ b/sys/arch/luna88k/conf/Makefile.luna88k
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.luna88k,v 1.21 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.luna88k,v 1.22 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -161,8 +161,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/mac68k/conf/Makefile.mac68k b/sys/arch/mac68k/conf/Makefile.mac68k
index 398c1c0569a..5356df224d8 100644
--- a/sys/arch/mac68k/conf/Makefile.mac68k
+++ b/sys/arch/mac68k/conf/Makefile.mac68k
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.mac68k,v 1.49 2010/04/27 03:37:37 deraadt Exp $
+# $OpenBSD: Makefile.mac68k,v 1.50 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -167,8 +167,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
fi
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/macppc/conf/Makefile.macppc b/sys/arch/macppc/conf/Makefile.macppc
index 8afa30c3377..1e495eeb8a7 100644
--- a/sys/arch/macppc/conf/Makefile.macppc
+++ b/sys/arch/macppc/conf/Makefile.macppc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.macppc,v 1.38 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.macppc,v 1.39 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -164,8 +164,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/moko/conf/Makefile.moko b/sys/arch/moko/conf/Makefile.moko
index c2cc5510277..80de5c42290 100644
--- a/sys/arch/moko/conf/Makefile.moko
+++ b/sys/arch/moko/conf/Makefile.moko
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.moko,v 1.10 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.moko,v 1.11 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -176,8 +176,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/mvme68k/conf/Makefile.mvme68k b/sys/arch/mvme68k/conf/Makefile.mvme68k
index d41253f61d2..9e1cc288202 100644
--- a/sys/arch/mvme68k/conf/Makefile.mvme68k
+++ b/sys/arch/mvme68k/conf/Makefile.mvme68k
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.mvme68k,v 1.41 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.mvme68k,v 1.42 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -162,8 +162,7 @@ depend:: .depend
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/mvme88k/conf/Makefile.mvme88k b/sys/arch/mvme88k/conf/Makefile.mvme88k
index 0597bc2efab..f5a686caa74 100644
--- a/sys/arch/mvme88k/conf/Makefile.mvme88k
+++ b/sys/arch/mvme88k/conf/Makefile.mvme88k
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.mvme88k,v 1.52 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.mvme88k,v 1.53 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -164,8 +164,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/mvmeppc/conf/Makefile.mvmeppc b/sys/arch/mvmeppc/conf/Makefile.mvmeppc
index 244e5b8b798..64b23b65a63 100644
--- a/sys/arch/mvmeppc/conf/Makefile.mvmeppc
+++ b/sys/arch/mvmeppc/conf/Makefile.mvmeppc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.mvmeppc,v 1.36 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.mvmeppc,v 1.37 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -165,8 +165,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/palm/conf/Makefile.palm b/sys/arch/palm/conf/Makefile.palm
index 3bea19789f3..6afaacddd99 100644
--- a/sys/arch/palm/conf/Makefile.palm
+++ b/sys/arch/palm/conf/Makefile.palm
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.palm,v 1.7 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.palm,v 1.8 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -170,8 +170,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/sgi/conf/Makefile.sgi b/sys/arch/sgi/conf/Makefile.sgi
index 2d34cddef2d..c088165c4ce 100644
--- a/sys/arch/sgi/conf/Makefile.sgi
+++ b/sys/arch/sgi/conf/Makefile.sgi
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.sgi,v 1.31 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.sgi,v 1.32 2010/04/27 04:31:47 deraadt Exp $
# Makefile for OpenBSD
#
@@ -168,8 +168,7 @@ depend:: .depend
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/socppc/conf/Makefile.socppc b/sys/arch/socppc/conf/Makefile.socppc
index 147939f1977..8285ac80e5e 100644
--- a/sys/arch/socppc/conf/Makefile.socppc
+++ b/sys/arch/socppc/conf/Makefile.socppc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.socppc,v 1.10 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.socppc,v 1.11 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -165,8 +165,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/solbourne/conf/Makefile.solbourne b/sys/arch/solbourne/conf/Makefile.solbourne
index 42c037a8908..04a9552b52c 100644
--- a/sys/arch/solbourne/conf/Makefile.solbourne
+++ b/sys/arch/solbourne/conf/Makefile.solbourne
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.solbourne,v 1.16 2010/04/26 22:21:15 deraadt Exp $
+# $OpenBSD: Makefile.solbourne,v 1.17 2010/04/27 04:31:47 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -167,8 +167,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/sparc/conf/Makefile.sparc b/sys/arch/sparc/conf/Makefile.sparc
index 2a2941a6877..1a72bad24cf 100644
--- a/sys/arch/sparc/conf/Makefile.sparc
+++ b/sys/arch/sparc/conf/Makefile.sparc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.sparc,v 1.53 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.sparc,v 1.54 2010/04/27 04:31:48 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -172,8 +172,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/sparc64/conf/Makefile.sparc64 b/sys/arch/sparc64/conf/Makefile.sparc64
index 774cbefeb4d..a9ab4ad7c2a 100644
--- a/sys/arch/sparc64/conf/Makefile.sparc64
+++ b/sys/arch/sparc64/conf/Makefile.sparc64
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.sparc64,v 1.38 2010/04/26 22:21:15 deraadt Exp $
+# $OpenBSD: Makefile.sparc64,v 1.39 2010/04/27 04:31:48 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -165,8 +165,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/vax/conf/Makefile.vax b/sys/arch/vax/conf/Makefile.vax
index 2ac878c705d..fa71e5785fa 100644
--- a/sys/arch/vax/conf/Makefile.vax
+++ b/sys/arch/vax/conf/Makefile.vax
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.vax,v 1.40 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.vax,v 1.41 2010/04/27 04:31:48 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -177,8 +177,7 @@ depend:: .depend
${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep
diff --git a/sys/arch/zaurus/conf/Makefile.zaurus b/sys/arch/zaurus/conf/Makefile.zaurus
index 8ee46000a48..95ef8f50b08 100644
--- a/sys/arch/zaurus/conf/Makefile.zaurus
+++ b/sys/arch/zaurus/conf/Makefile.zaurus
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.zaurus,v 1.20 2010/04/27 03:37:38 deraadt Exp $
+# $OpenBSD: Makefile.zaurus,v 1.21 2010/04/27 04:31:48 deraadt Exp $
# This makefile is constructed from a machine description:
# config machineid
@@ -176,8 +176,7 @@ depend:: .depend
${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
.endif
cat ${_archdir}/${_arch}/genassym.cf ${_machdir}/${_mach}/genassym.cf | \
- sh $S/kern/genassym.sh ${MKDEP} ${CFLAGS} ${CPPFLAGS} | \
- sort -u > assym.dep
+ sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} ${CPPFLAGS}
@sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \
< assym.dep >> .depend
@rm -f assym.dep