diff options
author | bde <bde@FreeBSD.org> | 1998-07-01 17:10:00 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-07-01 17:10:00 +0000 |
commit | 66357b6a9fe31c229e447c9920cfd10ce8b44f98 (patch) | |
tree | 5623965ad1e5b049d4e68d13efa96354b5a6f239 /sys/modules/linux | |
parent | ffd353a1b8c656db58d8bcab4a40ebf0a627f01a (diff) | |
download | FreeBSD-src-66357b6a9fe31c229e447c9920cfd10ce8b44f98.zip FreeBSD-src-66357b6a9fe31c229e447c9920cfd10ce8b44f98.tar.gz |
Fixed missing options headers. Options that affect LKMs shouldn't
exist.
Diffstat (limited to 'sys/modules/linux')
-rw-r--r-- | sys/modules/linux/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index c1153cb..494574c 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -1,18 +1,18 @@ -# $Id: Makefile,v 1.15 1998/02/06 23:54:21 eivind Exp $ +# $Id: Makefile,v 1.16 1998/03/19 12:35:55 bde Exp $ .PATH: ${.CURDIR}/../../sys/i386/linux KMOD= linux_mod SRCS= linux.c linux_file.c linux_ioctl.c linux_misc.c linux_signal.c \ linux_ipc.c linux_socket.c linux_stats.c \ linux_dummy.c linux_sysent.c linux_sysvec.c linux_util.c \ - imgact_linux.c opt_compat.h vnode_if.h + imgact_linux.c opt_compat.h opt_linux.h opt_vmpage.h vnode_if.h OBJS= linux_locore.o MAN8= linux.8 CFLAGS+= -DLKM -DCOMPAT_LINUX #-DDEBUG EXPORT_SYMS=_linux_mod CLEANFILES+= vnode_if.h vnode_if.c linux_genassym.o linux_genassym \ - linux_assym.h opt_compat.h + linux_assym.h opt_compat.h opt_linux.h opt_vmpage.h linux_assym.h: linux_genassym ./linux_genassym > linux_assym.h @@ -30,6 +30,9 @@ linux_genassym: linux_genassym.o opt_compat.h: echo "#define COMPAT_43 1" > opt_compat.h +opt_linux.h opt_vmpage.h: + touch ${.TARGET} + afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/linux ${DESTDIR}/usr/bin |