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

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.alpha -- with config changes.
    2 # Copyright 1990 W. Jolitz
    3 #       from: @(#)Makefile.alpha        7.1 5/10/91
    4 # $FreeBSD: releng/5.1/sys/conf/Makefile.alpha 113536 2003-04-15 21:29:11Z phk $
    5 #
    6 # Makefile for FreeBSD
    7 #
    8 # This makefile is constructed from a machine description:
    9 #       config machineid
   10 # Most changes should be made in the machine description
   11 #       /sys/alpha/conf/``machineid''
   12 # after which you should do
   13 #        config machineid
   14 # Generic makefile changes should be made in
   15 #       /sys/conf/Makefile.alpha
   16 # after which config should be rerun for all machines.
   17 #
   18 
   19 # Which version of config(8) is required.
   20 %VERSREQ=       500012
   21 
   22 .if !defined(S)
   23 .if exists(./@/.)
   24 S=      ./@
   25 .else
   26 S=      ../../..
   27 .endif
   28 .endif
   29 .include "$S/conf/kern.pre.mk"
   30 
   31 SYSTEM_LD= @${LD} ${FMT} -Bdynamic -T $S/conf/ldscript.$M \
   32         -e locorestart \
   33         -export-dynamic -dynamic-linker /red/herring \
   34         -o ${.TARGET} -X ${SYSTEM_OBJS} vers.o
   35 
   36 %BEFORE_DEPEND
   37 
   38 %OBJS
   39 
   40 %FILES.c
   41 
   42 %FILES.s
   43 
   44 %FILES.m
   45 
   46 %CLEAN
   47 
   48 SYSTEM_OBJS+=   __divqu.o __divq.o __divlu.o __divl.o
   49 SYSTEM_OBJS+=   __remqu.o __remq.o __remlu.o __reml.o
   50 CLEAN+= __divqu.S __divq.S __divlu.S __divl.S
   51 CLEAN+= __remqu.S __remq.S __remlu.S __reml.S
   52 
   53 __divqu.S: $S/$M/$M/divrem.m4
   54         @echo 'building ${.TARGET} from ${.ALLSRC}'
   55         @(echo "define(NAME,\`__divqu')define(OP,\`div')define(S,\`false')"; \
   56          echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   57 
   58 __divq.S: $S/$M/$M/divrem.m4
   59         @echo 'building ${.TARGET} from ${.ALLSRC}'
   60         @(echo "define(NAME,\`__divq')define(OP,\`div')define(S,\`true')"; \
   61          echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   62 
   63 __divlu.S: $S/$M/$M/divrem.m4
   64         @echo 'building ${.TARGET} from ${.ALLSRC}'
   65         @(echo "define(NAME,\`__divlu')define(OP,\`div')define(S,\`false')"; \
   66          echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   67 
   68 __divl.S: $S/$M/$M/divrem.m4
   69         @echo 'building ${.TARGET} from ${.ALLSRC}'
   70         @(echo "define(NAME,\`__divl')define(OP,\`div')define(S,\`true')"; \
   71          echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   72 
   73 __remqu.S: $S/$M/$M/divrem.m4
   74         @echo 'building ${.TARGET} from ${.ALLSRC}'
   75         @(echo "define(NAME,\`__remqu')define(OP,\`rem')define(S,\`false')"; \
   76          echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   77 
   78 __remq.S: $S/$M/$M/divrem.m4
   79         @echo 'building ${.TARGET} from ${.ALLSRC}'
   80         @(echo "define(NAME,\`__remq')define(OP,\`rem')define(S,\`true')"; \
   81          echo "define(WORDSIZE,64)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   82 
   83 __remlu.S: $S/$M/$M/divrem.m4
   84         @echo 'building ${.TARGET} from ${.ALLSRC}'
   85         @(echo "define(NAME,\`__remlu')define(OP,\`rem')define(S,\`false')"; \
   86          echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   87 
   88 __reml.S: $S/$M/$M/divrem.m4
   89         @echo 'building ${.TARGET} from ${.ALLSRC}'
   90         @(echo "define(NAME,\`__reml')define(OP,\`rem')define(S,\`true')"; \
   91          echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET}
   92 
   93 %RULES
   94 
   95 .include "$S/conf/kern.post.mk"

Cache object: c17c57f9b17ea066676c77a20285e081


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