summaryrefslogtreecommitdiff
path: root/sys/lkm/exec/linux_elf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sys/lkm/exec/linux_elf/Makefile')
-rw-r--r--sys/lkm/exec/linux_elf/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/sys/lkm/exec/linux_elf/Makefile b/sys/lkm/exec/linux_elf/Makefile
deleted file mode 100644
index 4f5a2fc1dc5..00000000000
--- a/sys/lkm/exec/linux_elf/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# $NetBSD: Makefile,v 1.10 2007/10/19 18:52:13 njoly Exp $
-
-.include "../Makefile.inc"
-
-.PATH: $S/compat/linux/common
-.PATH: $S/compat/linux/arch/${MACHINE}
-.PATH: $S/compat/linux/arch/${MACHINE_ARCH}
-
-CPPFLAGS+= -nostdinc -D_KERNEL -DEXEC_ELF32 -DEXEC_ELF64
-
-KMOD= exec_linux_elf
-
-SRCS= lkminit_exec.c
-
-.if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
-SRCS+= linux_exec_machdep.c
-.endif
-
-.if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || ${MACHINE} == "sparc64"
-CPPFLAGS+= -DELFSIZE=64
-SRCS+= linux_exec_elf64.c
-.else
-CPPFLAGS+= -DELFSIZE=32
-SRCS+= linux_exec_elf32.c
-.endif
-
-.include <bsd.kmod.mk>