diff options
author | Steve Passe <fsmp@FreeBSD.org> | 1997-04-28 00:02:22 +0000 |
---|---|---|
committer | Steve Passe <fsmp@FreeBSD.org> | 1997-04-28 00:02:22 +0000 |
commit | 066da549d44ab78aabfbac74637fb7eeee1d5493 (patch) | |
tree | 27c6b3d88241d33560f04c16946574ade30c68c7 /share/mk/bsd.kmod.mk | |
parent | 3e3d6b2e21fa38a88a489142a4848e36d450aafd (diff) |
Notes
Diffstat (limited to 'share/mk/bsd.kmod.mk')
-rw-r--r-- | share/mk/bsd.kmod.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/share/mk/bsd.kmod.mk b/share/mk/bsd.kmod.mk index b1d9773dc0d04..6131e9c01a1a4 100644 --- a/share/mk/bsd.kmod.mk +++ b/share/mk/bsd.kmod.mk @@ -1,5 +1,5 @@ # From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 -# $Id: bsd.kmod.mk,v 1.30 1997/02/22 13:56:10 peter Exp $ +# $Id: bsd.kmod.mk,v 1.31 1997/04/13 06:44:21 jkh Exp $ # # The include file <bsd.kmod.mk> handles installing Loadable Kernel Modules. # <bsd.kmod.mk> includes the file named "../Makefile.inc" if it exists, @@ -94,6 +94,14 @@ MODUNLOAD?= /sbin/modunload .SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S # +# A temporary fix to survive SMP changes. +# +CFLAGS+= -I. +beforedepend: + touch opt_smp.h + touch opt_smp_invltlb.h + +# # Assume that we are in /usr/src/foo/bar, so /sys is # ${.CURDIR}/../../sys. We don't bother adding a .PATH since nothing # actually lives in /sys directly. |