Merge branch 'vendor/OPENSSL'
[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
3 .PATH: ${.CURDIR}/${MACHINE_ARCH}
4
5 ARCH=   arch_linux
6 KMOD=   linux
7 SRCS=   linux_dummy.c linux_emuldata.c linux_epoll.c \
8         linux_file.c linux_futex.c linux_getcwd.c linux_ioctl.c \
9         linux_ipc.c \
10         linux_machdep.c linux_mib.c linux_misc.c linux_time.c linux_signal.c \
11         linux_socket.c \
12         linux_stats.c linux_sysctl.c linux_sysent.c linux_sysvec.c \
13         linux_util.c opt_compat.h opt_global.h opt_vmpage.h
14 SRCS+=  opt_nfs.h assym.s
15 OBJS=   linux_support.o linux_locore.o
16
17 SUBDIR= ${MACHINE_ARCH}
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
26 .if exists(@)
27 linux_assym.h: @/kern/genassym.sh
28 .endif
29         sh @/kern/genassym.sh linux_genassym.o > ${.TARGET}
30
31 linux_locore.o: linux_locore.s linux_assym.h
32         ${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
33             ${.IMPSRC} -o ${.TARGET}
34
35 linux_support.o: linux_support.s linux_assym.h assym.s
36         ${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
37             ${.IMPSRC} -o ${.TARGET}
38
39 linux_genassym.o: linux_genassym.c linux.h @
40         ${CC} -c ${CFLAGS:N-fno-common} ${.IMPSRC}
41
42 opt_compat.h:
43         echo "#define COMPAT_43 1" > opt_compat.h
44
45 .include <bsd.kmod.mk>