Merge branch 'net80211-update' of git://leaf.dragonflybsd.org/~rpaulo/dragonfly into...
[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.10 2006/11/07 06:43:24 dillon Exp $
3
4 .PATH: ${.CURDIR}/../../emulation/linux ${.CURDIR}/../../emulation/linux/${MACHINE_ARCH}
5
6 ARCH=   arch_linux
7 KMOD=   linux
8 SRCS=   linux_dummy.c linux_emuldata.c linux_epoll.c \
9         linux_file.c linux_futex.c linux_getcwd.c linux_ioctl.c \
10         linux_ipc.c \
11         linux_machdep.c linux_mib.c linux_misc.c linux_time.c linux_signal.c \
12         linux_socket.c \
13         linux_stats.c linux_sysctl.c linux_sysent.c linux_sysvec.c \
14         linux_util.c opt_compat.h opt_global.h opt_vmpage.h
15 OBJS=   linux_support.o linux_locore.o
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_support.o: linux_support.s linux_assym.h
35         ${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
36             ${.IMPSRC} -o ${.TARGET}
37
38 linux_genassym.o: linux_genassym.c linux.h @
39         ${CC} -c ${CFLAGS:N-fno-common} ${.IMPSRC}
40
41 opt_compat.h:
42         echo "#define COMPAT_43 1" > opt_compat.h
43
44 .include <bsd.kmod.mk>