Implement linux_mmap2().
[dragonfly.git] / sys / emulation / linux / Makefile
1 # $FreeBSD: src/sys/modules/linux/Makefile,v 1.34.2.12 2003/01/02 20:41:34 kan Exp $
2 # $DragonFly: src/sys/emulation/linux/Makefile,v 1.3 2003/08/15 06:32:51 dillon Exp $
3
4 MAINTAINER=     marcel@FreeBSD.org
5
6 .PATH: ${.CURDIR}/../../emulation/linux ${.CURDIR}/../../emulation/linux/${MACHINE_ARCH}
7
8 ARCH=   arch_linux
9 KMOD=   linux
10 SRCS=   linux_dummy.c linux_file.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
11         linux_machdep.c linux_mib.c linux_misc.c linux_signal.c linux_socket.c \
12         linux_stats.c linux_sysctl.c linux_sysent.c linux_sysvec.c \
13         linux_util.c opt_compat.h opt_linux.h opt_vmpage.h vnode_if.h
14 OBJS=   linux_locore.o
15 MAN=    linux.8
16
17 SUBDIR= i386/linprocfs
18 .if ${MACHINE_ARCH} == "i386"
19 SRCS+=  linux_ptrace.c linux_uid16.c imgact_linux.c opt_cpu.h
20 .endif
21
22 CLEANFILES=     linux_assym.h linux_genassym.o
23
24 linux_assym.h: linux_genassym.o
25 .if exists(@)
26 linux_assym.h: @/kern/genassym.sh
27 .endif
28         sh @/kern/genassym.sh linux_genassym.o > ${.TARGET}
29
30 linux_locore.o: linux_locore.s linux_assym.h
31         ${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
32             ${.IMPSRC} -o ${.TARGET}
33
34 linux_genassym.o: linux_genassym.c linux.h @ machine
35         ${CC} -c ${CFLAGS} ${.IMPSRC}
36
37 opt_compat.h:
38         echo "#define COMPAT_43 1" > opt_compat.h
39
40 afterinstall:
41         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
42                 ${.CURDIR}/linux.sh ${DESTDIR}/usr/sbin/linux
43
44 .include <bsd.kmod.mk>
45 .include <bsd.subdir.mk>