aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/linux64/Makefile
blob: ac40344edd01c17fae44e31c4206768df00ffabe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# $FreeBSD$

.PATH: ${SRCTOP}/sys/compat/linux ${SRCTOP}/sys/${MACHINE_ARCH}/linux

VDSO=	linux_vdso

KMOD=	linux64
SRCS=	linux_fork.c linux_dummy.c linux_file.c linux_event.c \
	linux_futex.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
	linux_machdep.c linux_misc.c linux_ptrace.c linux_signal.c \
	linux_socket.c linux_stats.c linux_sysctl.c linux_sysent.c \
	linux_sysvec.c linux_time.c linux_vdso.c linux_timer.c \
	opt_inet6.h opt_compat.h opt_posix.h opt_usb.h \
	vnode_if.h device_if.h bus_if.h assym.s \
	linux_support.s
DPSRCS=	linux_genassym.c

# XXX: for assym.s
SRCS+=  opt_kstack_pages.h opt_nfs.h opt_hwpmc_hooks.h
.if ${MACHINE_CPUARCH} == "i386"
SRCS+=	opt_apic.h
.endif

CLEANFILES=	linux_assym.h linux_genassym.o linux_locore.o

OBJS=	${VDSO}.so

linux_assym.h: linux_genassym.o
	sh ${SYSDIR}/kern/genassym.sh linux_genassym.o > ${.TARGET}

linux_locore.o: linux_locore.s linux_assym.h
	${CC} -x assembler-with-cpp -DLOCORE -shared -mcmodel=small	\
	-pipe -I. -I${SYSDIR} -Werror -Wall -fno-common -fPIC -nostdinc	\
	-Wl,-T${SRCTOP}/sys/${MACHINE_CPUARCH}/linux/${VDSO}.lds.s	\
	-Wl,-soname=${VDSO}.so.1,-warn-common -nostdlib			\
	    ${.IMPSRC} -o ${.TARGET}

${VDSO}.so: linux_locore.o
	${OBJCOPY} --input-target binary --output-target elf64-x86-64-freebsd		\
	    -S -g --binary-architecture i386:x86-64 linux_locore.o ${.TARGET}

linux_support.o: assym.s linux_assym.h
	${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
	    ${.IMPSRC} -o ${.TARGET}

linux_genassym.o:
	${CC} -c ${CFLAGS:N-flto:N-fno-common} ${.IMPSRC}

.if !defined(KERNBUILDDIR)
.if defined(DEBUG)
CFLAGS+=-DDEBUG
.endif
.if defined(KTR)
CFLAGS+=-DKTR
.endif
.endif

.include <bsd.kmod.mk>