mirror of
https://github.com/opnsense/src.git
synced 2026-03-24 11:43:11 -04:00
bugfix: 'make depend' cause all LKMs rebuild
This commit is contained in:
parent
0a9bd6b010
commit
ba11dfa74c
2 changed files with 12 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue