bugfix: 'make depend' cause all LKMs rebuild

This commit is contained in:
Andrey A. Chernov 1997-04-30 06:04:17 +00:00
parent 0a9bd6b010
commit ba11dfa74c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25302
2 changed files with 12 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
# $Id: bsd.kmod.mk,v 1.31 1997/04/13 06:44:21 jkh Exp $
# $Id: bsd.kmod.mk,v 1.32 1997/04/28 00:02:22 fsmp Exp $
#
# The include file <bsd.kmod.mk> handles installing Loadable Kernel Modules.
# <bsd.kmod.mk> includes the file named "../Makefile.inc" if it exists,
@ -97,8 +97,12 @@ MODUNLOAD?= /sbin/modunload
# A temporary fix to survive SMP changes.
#
CFLAGS+= -I.
beforedepend:
beforedepend: opt_smp.h opt_smp_invltlb.h
opt_smp.h:
touch opt_smp.h
opt_smp_invltlb.h:
touch opt_smp_invltlb.h
#

View File

@ -1,5 +1,5 @@
# From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
# $Id: bsd.kmod.mk,v 1.31 1997/04/13 06:44:21 jkh Exp $
# $Id: bsd.kmod.mk,v 1.32 1997/04/28 00:02:22 fsmp Exp $
#
# The include file <bsd.kmod.mk> handles installing Loadable Kernel Modules.
# <bsd.kmod.mk> includes the file named "../Makefile.inc" if it exists,
@ -97,8 +97,12 @@ MODUNLOAD?= /sbin/modunload
# A temporary fix to survive SMP changes.
#
CFLAGS+= -I.
beforedepend:
beforedepend: opt_smp.h opt_smp_invltlb.h
opt_smp.h:
touch opt_smp.h
opt_smp_invltlb.h:
touch opt_smp_invltlb.h
#