Makefile revision 293514
1# $FreeBSD: stable/10/sys/modules/linux/Makefile 293514 2016-01-09 15:44:38Z dchagin $
2
3.if ${MACHINE_CPUARCH} == "amd64"
4SFX= 32
5CFLAGS+=-DCOMPAT_FREEBSD32 -DCOMPAT_LINUX32
6.endif
7
8.PATH: ${.CURDIR}/../../compat/linux ${.CURDIR}/../../${MACHINE_CPUARCH}/linux${SFX}
9
10VDSO=	linux${SFX}_vdso
11
12KMOD=	linux
13SRCS=	linux_fork.c linux${SFX}_dummy.c linux_emul.c linux_file.c \
14	linux_futex.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
15	linux${SFX}_machdep.c linux_mib.c linux_misc.c linux_signal.c \
16	linux_socket.c linux_stats.c linux_sysctl.c linux${SFX}_sysent.c \
17	linux${SFX}_sysvec.c linux_uid16.c linux_util.c linux_time.c \
18	linux_timer.c linux_vdso.c \
19	opt_inet6.h opt_compat.h opt_kdtrace.h opt_posix.h opt_usb.h \
20	vnode_if.h device_if.h bus_if.h assym.s \
21	linux${SFX}_support.s
22DPSRCS=	linux${SFX}_genassym.c
23
24# XXX: for assym.s
25SRCS+=  opt_kstack_pages.h opt_nfs.h opt_compat.h opt_hwpmc_hooks.h
26.if ${MACHINE_CPUARCH} == "i386"
27SRCS+=	opt_apic.h
28.endif
29
30OBJS=	${VDSO}.so
31
32.if ${MACHINE_CPUARCH} == "i386"
33SRCS+=	linux_ptrace.c imgact_linux.c opt_cpu.h
34.endif
35
36EXPORT_SYMS=
37EXPORT_SYMS+=	linux_emul_path
38EXPORT_SYMS+=	linux_get_osname
39EXPORT_SYMS+=	linux_get_osrelease
40EXPORT_SYMS+=	linux_ifname
41EXPORT_SYMS+=	linux_ioctl_register_handler
42EXPORT_SYMS+=	linux_ioctl_unregister_handler
43
44CLEANFILES=	linux${SFX}_assym.h linux${SFX}_genassym.o linux${SFX}_locore.o
45
46linux${SFX}_assym.h: linux${SFX}_genassym.o
47	sh ${SYSDIR}/kern/genassym.sh linux${SFX}_genassym.o > ${.TARGET}
48
49linux${SFX}_locore.o: linux${SFX}_assym.h assym.s
50	${CC} -x assembler-with-cpp -DLOCORE -m32 -shared -s			\
51	-pipe -I. -I${SYSDIR} -Werror -Wall -fno-common -nostdinc -nostdlib	\
52	-fno-omit-frame-pointer							\
53	-Wl,-T${.CURDIR}/../../${MACHINE_CPUARCH}/linux${SFX}/${VDSO}.lds.s	\
54	-Wl,-soname=${VDSO}.so.1,--eh-frame-hdr,-fPIC,-warn-common		\
55	    ${.IMPSRC} -o ${.TARGET}
56
57linux${SFX}_support.o: linux${SFX}_assym.h assym.s
58	${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
59	    ${.IMPSRC} -o ${.TARGET}
60
61.if ${MACHINE_CPUARCH} == "amd64"
62${VDSO}.so: linux${SFX}_locore.o
63	${OBJCOPY} --input binary --output elf64-x86-64-freebsd			\
64	    --binary-architecture i386 linux${SFX}_locore.o ${.TARGET}
65.else
66${VDSO}.so: linux${SFX}_locore.o
67	${OBJCOPY} --input binary --output elf32-i386-freebsd			\
68	    --binary-architecture i386 linux${SFX}_locore.o ${.TARGET}
69.endif
70
71linux${SFX}_genassym.o:
72	${CC} -c ${CFLAGS:N-fno-common} ${.IMPSRC}
73
74.if !defined(KERNBUILDDIR)
75opt_inet6.h:
76	echo "#define INET6 1" > ${.TARGET}
77.if defined(KTR)
78CFLAGS+=	-DKTR
79.endif
80.if defined(DEBUG)
81CFLAGS+=	-DDEBUG
82.endif
83.endif
84
85.include <bsd.kmod.mk>
86