]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/modules/linux/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / modules / linux / Makefile
1 # $FreeBSD$
2
3 .if ${MACHINE_CPUARCH} == "amd64"
4 SFX= 32
5 CFLAGS+=-DCOMPAT_FREEBSD32 -DCOMPAT_LINUX32
6 .endif
7
8 .PATH: ${.CURDIR}/../../compat/linux ${.CURDIR}/../../${MACHINE_CPUARCH}/linux${SFX}
9
10 KMOD=   linux
11 SRCS=   linux_fork.c linux${SFX}_dummy.c linux_emul.c linux_file.c \
12         linux_futex.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
13         linux${SFX}_machdep.c linux_mib.c linux_misc.c linux_signal.c \
14         linux_socket.c linux_stats.c linux_sysctl.c linux${SFX}_sysent.c \
15         linux${SFX}_sysvec.c linux_uid16.c linux_util.c linux_time.c \
16         linux_timer.c \
17         opt_inet6.h opt_compat.h opt_kdtrace.h opt_posix.h opt_usb.h \
18         vnode_if.h device_if.h bus_if.h assym.s
19 DPSRCS= linux${SFX}_genassym.c
20
21 # XXX: for assym.s
22 SRCS+=  opt_kstack_pages.h opt_nfs.h opt_compat.h opt_hwpmc_hooks.h
23 .if ${MACHINE_CPUARCH} == "i386"
24 SRCS+=  opt_apic.h
25 .endif
26
27 OBJS=   linux${SFX}_locore.o linux${SFX}_support.o
28
29 .if ${MACHINE_CPUARCH} == "i386"
30 SRCS+=  linux_ptrace.c imgact_linux.c opt_cpu.h
31 .endif
32
33 EXPORT_SYMS=
34 EXPORT_SYMS+=   linux_emul_path
35 EXPORT_SYMS+=   linux_get_osname
36 EXPORT_SYMS+=   linux_get_osrelease
37 EXPORT_SYMS+=   linux_ifname
38 EXPORT_SYMS+=   linux_ioctl_register_handler
39 EXPORT_SYMS+=   linux_ioctl_unregister_handler
40
41 CLEANFILES=     linux${SFX}_assym.h linux${SFX}_genassym.o
42
43 linux${SFX}_assym.h: linux${SFX}_genassym.o
44 .if exists(@)
45 linux${SFX}_assym.h: @/kern/genassym.sh
46 .endif
47         sh @/kern/genassym.sh linux${SFX}_genassym.o > ${.TARGET}
48
49 linux${SFX}_locore.o: linux${SFX}_locore.s linux${SFX}_assym.h
50         ${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
51             ${.IMPSRC} -o ${.TARGET}
52
53 linux${SFX}_support.o: linux${SFX}_support.s assym.s linux${SFX}_assym.h
54         ${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
55             ${.IMPSRC} -o ${.TARGET}
56
57 linux${SFX}_genassym.o: linux${SFX}_genassym.c linux.h @ machine x86
58         ${CC} -c ${CFLAGS:N-fno-common} ${.IMPSRC}
59
60 .if !defined(KERNBUILDDIR)
61 opt_inet6.h:
62         echo "#define INET6 1" > ${.TARGET}
63 .if defined(KTR)
64 CFLAGS+=        -DKTR
65 .endif
66 .endif
67
68 .include <bsd.kmod.mk>