The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/exec_aout/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #       $NetBSD: Makefile,v 1.4 2019/11/20 19:37:54 pgoyette Exp $
    2 
    3 .include "../Makefile.inc"
    4 
    5 KMOD=   exec_aout
    6 
    7 CPPFLAGS+=      -DEXEC_AOUT -DCOMPAT_NOMID
    8 
    9 .PATH:  ${S}/kern
   10 SRCS=   exec_aout.c
   11 
   12 .PATH:  ${S}/compat/common
   13 SRCS+=  compat_exec.c
   14 
   15 .PATH:  ${S}/arch/${MACHINE}/${MACHINE}
   16 .PATH:  ${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH}
   17 .PATH:  ${S}/arch/${MACHINE_CPU}/${MACHINE_CPU}
   18 
   19 .if (exists(${S}/arch/${MACHINE}/${MACHINE}/aout_machdep.c)) || \
   20     (exists(${S}/arch/${MACHINE_ARCH}/${MACHINE_ARCH}/aout_machdep.c)) || \
   21     (exists(${S}/arch/${MACHINE_CPU}/${MACHINE_CPU}/aout_machdep.c))
   22 SRCS+=  aout_machdep.c
   23 .endif
   24 
   25 .include <bsd.kmodule.mk>

Cache object: 271c6a4986969273dc21c4e7a7307bd8


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.