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

FreeBSD/Linux Kernel Cross Reference
sys/boot/common/Makefile.inc

Version: -  FREEBSD  -  FREEBSD7  -  FREEBSD71  -  FREEBSD70  -  FREEBSD6  -  FREEBSD64  -  FREEBSD63  -  FREEBSD62  -  FREEBSD61  -  FREEBSD60  -  FREEBSD5  -  FREEBSD55  -  FREEBSD54  -  FREEBSD53  -  FREEBSD52  -  FREEBSD51  -  FREEBSD50  -  FREEBSD4  -  FREEBSD3  -  FREEBSD22  -  linux-2.6  -  linux-2.4.22  -  MK83  -  MK84  -  PLAN9  -  DFBSD  -  NETBSD  -  NETBSD5  -  NETBSD4  -  NETBSD3  -  NETBSD20  -  OPENBSD  -  xnu-517  -  xnu-792  -  xnu-792.6.70  -  xnu-1228  -  OPENSOLARIS  -  minix-3-1-1  -  TRUSTEDBSD-SEBSD  -  FREEBSD-LIBC  -  FREEBSD7-LIBC  -  FREEBSD6-LIBC  -  GLIBC27 
SearchContext: -  none  -  excerpts  -  bigexcerpts 

  1 # $FreeBSD: src/sys/boot/common/Makefile.inc,v 1.24 2008/10/14 10:11:14 raj Exp $
  2 
  3 SRCS+=  boot.c commands.c console.c devopen.c interp.c 
  4 SRCS+=  interp_backslash.c interp_parse.c ls.c misc.c 
  5 SRCS+=  module.c panic.c
  6 
  7 .if ${MACHINE} == "i386" || ${MACHINE_ARCH} == "amd64"
  8 SRCS+=  load_elf32.c load_elf32_obj.c reloc_elf32.c
  9 SRCS+=  load_elf64.c load_elf64_obj.c reloc_elf64.c
 10 .elif ${MACHINE} == "pc98"
 11 SRCS+=  load_elf32.c load_elf32_obj.c reloc_elf32.c
 12 .elif ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "arm"
 13 SRCS+=  load_elf32.c reloc_elf32.c
 14 .elif ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "ia64"
 15 SRCS+=  load_elf64.c reloc_elf64.c
 16 .endif
 17 
 18 .if defined(LOADER_NET_SUPPORT)
 19 SRCS+=  dev_net.c
 20 .endif
 21 
 22 .if defined(HAVE_BCACHE)
 23 SRCS+=  bcache.c
 24 .endif
 25 
 26 # Machine-independant ISA PnP
 27 .if defined(HAVE_ISABUS)
 28 SRCS+=  isapnp.c
 29 .endif
 30 .if defined(HAVE_PNP)
 31 SRCS+=  pnp.c
 32 .endif
 33 
 34 # Forth interpreter
 35 .if defined(BOOT_FORTH)
 36 SRCS+=  interp_forth.c
 37 MAN+=   ../forth/loader.conf.5
 38 MAN+=   ../forth/loader.4th.8
 39 .endif
 40 
 41 MAN+=   loader.8

Cache object: 47e7647c71d03c767408114f8654e954


[ 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.