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/conf/Makefile.amd64

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 # Makefile.amd64 -- with config changes.
    2 # Copyright 1990 W. Jolitz
    3 #       from: @(#)Makefile.i386 7.1 5/10/91
    4 #       from FreeBSD: src/sys/conf/Makefile.i386,v 1.255 2002/02/20 23:35:49
    5 # $FreeBSD: releng/6.0/sys/conf/Makefile.amd64 151817 2005-10-28 19:20:53Z jhb $
    6 #
    7 # Makefile for FreeBSD
    8 #
    9 # This makefile is constructed from a machine description:
   10 #       config machineid
   11 # Most changes should be made in the machine description
   12 #       /sys/amd64/conf/``machineid''
   13 # after which you should do
   14 #        config machineid
   15 # Generic makefile changes should be made in
   16 #       /sys/conf/Makefile.amd64
   17 # after which config should be rerun for all machines.
   18 #
   19 
   20 # Which version of config(8) is required.
   21 %VERSREQ=       600003
   22 
   23 STD8X16FONT?=   iso
   24 
   25 .if !defined(S)
   26 .if exists(./@/.)
   27 S=      ./@
   28 .else
   29 S=      ../../..
   30 .endif
   31 .endif
   32 .include "$S/conf/kern.pre.mk"
   33 
   34 DDB_ENABLED!=   grep DDB opt_ddb.h || true
   35 .if ${DDB_ENABLED} != ""
   36 CFLAGS+=        -fno-omit-frame-pointer
   37 .endif
   38 
   39 MKMODULESENV+= MACHINE=amd64
   40 
   41 %BEFORE_DEPEND
   42 
   43 %OBJS
   44 
   45 %FILES.c
   46 
   47 %FILES.s
   48 
   49 %FILES.m
   50 
   51 %CLEAN
   52 
   53 %RULES
   54 
   55 .include "$S/conf/kern.post.mk"

Cache object: b3c06a9fccc90ca39a02f0df9b7164b7


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