diff options
author | eivind <eivind@FreeBSD.org> | 1997-12-16 18:45:50 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1997-12-16 18:45:50 +0000 |
commit | 274059dce1496710fba9883701ff69b13f8fd6ff (patch) | |
tree | 2b9cead98fc490eb6e8cb11dee1f4f6fb60bf0c9 /sys | |
parent | 4b659b30c1812d36609248d5f6cf1a5d65b2b8cc (diff) | |
download | FreeBSD-src-274059dce1496710fba9883701ff69b13f8fd6ff.zip FreeBSD-src-274059dce1496710fba9883701ff69b13f8fd6ff.tar.gz |
Handle COMPAT_43 define -> option change.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/modules/linux/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index 88b4fda..656dda2 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -1,18 +1,18 @@ -# $Id$ +# $Id: Makefile,v 1.11 1997/02/22 12:48:23 peter 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 vnode_if.h + imgact_linux.c opt_compat.h vnode_if.h OBJS= linux_locore.o MAN8= linux.8 -CFLAGS+= -DLKM -I. -DCOMPAT_43 -DCOMPAT_LINUX #-DDEBUG +CFLAGS+= -DLKM -I. -DCOMPAT_LINUX #-DDEBUG EXPORT_SYMS=_linux_mod CLEANFILES+= vnode_if.h vnode_if.c linux_genassym.o linux_genassym machine \ - linux_assym.h + linux_assym.h opt_compat.h linux_assym.h: linux_genassym ./linux_genassym > linux_assym.h @@ -30,6 +30,9 @@ linux_genassym: linux_genassym.o machine: ln -fs ${.CURDIR}/../../sys/i386/include machine +opt_compat.h: + echo "#define COMPAT_43 1" > opt_compat.h + vnode_if.h: machine afterinstall: |