diff options
author | wollman <wollman@FreeBSD.org> | 1994-10-27 23:36:57 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-10-27 23:36:57 +0000 |
commit | c231fede0ae44ef7e2d84f3cd2cc5221db225669 (patch) | |
tree | 2f199fbd115c31ac3b1d8dd85627b6d1a9f26f8a /lkm | |
parent | 2a45a34f5d0d4ee25a01e88780d19de21178b5c8 (diff) | |
download | FreeBSD-src-c231fede0ae44ef7e2d84f3cd2cc5221db225669.zip FreeBSD-src-c231fede0ae44ef7e2d84f3cd2cc5221db225669.tar.gz |
ibcs2 is not a filesystem, don't compile it as if it were.
Diffstat (limited to 'lkm')
-rw-r--r-- | lkm/ibcs2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lkm/ibcs2/Makefile b/lkm/ibcs2/Makefile index 47b570a..482ac1a 100644 --- a/lkm/ibcs2/Makefile +++ b/lkm/ibcs2/Makefile @@ -1,13 +1,13 @@ -# $Id: Makefile,v 1.2 1994/10/14 08:45:15 sos Exp $ +# $Id: Makefile,v 1.3 1994/10/14 22:56:40 sos Exp $ .PATH: ${.CURDIR}/../../sys/i386/ibcs2 KMOD= ibcs2_mod SRCS= ibcs2.c ibcs2_dummy.c ibcs2_file.c ibcs2_ioctl.c ibcs2_ipc.c \ ibcs2_isc.c ibcs2_misc.c ibcs2_signal.c ibcs2_stats.c \ - ibcs2_sysent.c ibcs2_sysi86.c ibcs2_xenix.c + ibcs2_sysent.c ibcs2_sysi86.c ibcs2_xenix.c vnode_if.h NOMAN= -VFS_LKM= CFLAGS+= -DLKM -I. -DCOMPAT_IBCS2 +CLEANFILES+= vnode_if.h vnode_if.c afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ |