diff options
Diffstat (limited to 'sys/modules/ibcs2/Makefile')
-rw-r--r-- | sys/modules/ibcs2/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/ibcs2/Makefile b/sys/modules/ibcs2/Makefile new file mode 100644 index 0000000..29f88a9 --- /dev/null +++ b/sys/modules/ibcs2/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../i386/ibcs2 +KMOD= ibcs2 +SRCS= ibcs2_errno.c ibcs2_ipc.c ibcs2_stat.c ibcs2_misc.c \ + ibcs2_fcntl.c ibcs2_signal.c ibcs2_sysent.c ibcs2_ioctl.c \ + ibcs2_socksys.c ibcs2_util.c ibcs2_xenix.c ibcs2_xenix_sysent.c \ + ibcs2_isc.c ibcs2_isc_sysent.c \ + ibcs2_msg.c ibcs2_other.c ibcs2_sysi86.c ibcs2_sysvec.c \ + vnode_if.h opt_spx_hack.h +MAN8= ibcs2.8 + +CFLAGS+= -DCOMPAT_IBCS2 +EXPORT_SYMS= _ibcs2_mod _ibcs2_emul_path _ibcs2_svr3_sysvec + +afterinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/ibcs2.sh ${DESTDIR}/usr/sbin/ibcs2 + +.include <bsd.kmod.mk> |