1998-02-06 23:54:27 +00:00
|
|
|
# $Id: Makefile,v 1.14 1998/02/04 21:56:36 eivind Exp $
|
1995-06-25 17:32:43 +00:00
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../../sys/i386/linux
|
|
|
|
KMOD= linux_mod
|
1996-01-08 05:36:17 +00:00
|
|
|
SRCS= linux.c linux_file.c linux_ioctl.c linux_misc.c linux_signal.c \
|
1996-03-02 20:00:35 +00:00
|
|
|
linux_ipc.c linux_socket.c linux_stats.c \
|
|
|
|
linux_dummy.c linux_sysent.c linux_sysvec.c linux_util.c \
|
1998-02-06 23:54:27 +00:00
|
|
|
imgact_linux.c opt_compat.h vnode_if.h
|
1996-03-02 20:00:35 +00:00
|
|
|
OBJS= linux_locore.o
|
1997-01-10 05:48:50 +00:00
|
|
|
MAN8= linux.8
|
1996-03-02 20:00:35 +00:00
|
|
|
|
1998-02-01 17:53:56 +00:00
|
|
|
CFLAGS+= -DLKM -DCOMPAT_LINUX #-DDEBUG
|
1996-03-10 08:42:54 +00:00
|
|
|
EXPORT_SYMS=_linux_mod
|
1998-02-01 17:53:56 +00:00
|
|
|
CLEANFILES+= vnode_if.h vnode_if.c linux_genassym.o linux_genassym \
|
1998-02-06 23:54:27 +00:00
|
|
|
linux_assym.h opt_compat.h
|
1996-03-02 20:00:35 +00:00
|
|
|
|
|
|
|
linux_assym.h: linux_genassym
|
|
|
|
./linux_genassym > linux_assym.h
|
|
|
|
|
|
|
|
linux_locore.o: linux_locore.s linux_assym.h
|
1996-06-25 20:13:12 +00:00
|
|
|
${CC} -c -x assembler-with-cpp -DLOCORE -DKERNEL ${CFLAGS} \
|
|
|
|
${.IMPSRC} -o ${.TARGET}
|
1996-03-02 20:00:35 +00:00
|
|
|
|
|
|
|
linux_genassym.o: linux_genassym.c linux.h
|
|
|
|
${CC} -c ${CFLAGS} -UKERNEL ${.IMPSRC}
|
|
|
|
|
|
|
|
linux_genassym: linux_genassym.o
|
|
|
|
${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
|
1995-06-25 17:32:43 +00:00
|
|
|
|
1997-12-16 18:45:50 +00:00
|
|
|
opt_compat.h:
|
|
|
|
echo "#define COMPAT_43 1" > opt_compat.h
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
afterinstall:
|
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
1996-06-25 20:13:12 +00:00
|
|
|
${.CURDIR}/linux ${DESTDIR}/usr/bin
|
1995-06-25 17:32:43 +00:00
|
|
|
|
|
|
|
.include <bsd.kmod.mk>
|