diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-05-25 02:35:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-05-25 02:35:04 +0000 |
commit | 733e3ed41203ad6e79097dbeda973d198d1cead4 (patch) | |
tree | cb0711840e8d293a4418681bb1e5b5ded808e215 /sys/arch/vax | |
parent | cc05550f3e925b82a43c65089b1b0d354f39f3fa (diff) |
${SRCS} is only used once, and fits onto the line where it is used
idea that came out of discussion with drahn
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/conf/Makefile.vax | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/vax/conf/Makefile.vax b/sys/arch/vax/conf/Makefile.vax index 0f4a1c341a0..2682ce37b75 100644 --- a/sys/arch/vax/conf/Makefile.vax +++ b/sys/arch/vax/conf/Makefile.vax @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.vax,v 1.51 2010/05/24 23:19:22 deraadt Exp $ +# $OpenBSD: Makefile.vax,v 1.52 2010/05/25 02:35:03 deraadt Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -127,9 +127,8 @@ tags: @echo "see $S/kern/Makefile for tags" AFILES= ${_machdir}/${_mach}/intvec.s ${_machdir}/${_mach}/subr.s -SRCS= ${AFILES} param.c ioconf.c ${CFILES} ${SFILES} depend:: .depend -.depend: ${SRCS} assym.h param.c ${DB_STRUCTINFO} +.depend: ${AFILES} param.c ioconf.c ${CFILES} ${SFILES} assym.h ${DB_STRUCTINFO} ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${AFILES} ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} .if !empty(SFILES) |