[BACK]Return to Makefile.inc CVS log [TXT][DIR] Up to [local] / sys / arch / alpha / stand

Annotation of sys/arch/alpha/stand/Makefile.inc, Revision 1.1

1.1     ! nbrk        1: #      $OpenBSD: Makefile.inc,v 1.10 2006/09/26 23:14:52 martin Exp $
        !             2: #      $NetBSD: Makefile.inc,v 1.8 1997/04/06 08:39:38 cgd Exp $
        !             3:
        !             4: .include <bsd.own.mk>                  # for ELF_TOOLCHAIN definition
        !             5:
        !             6: BINDIR=                        /usr/mdec
        !             7:
        !             8: # For descriptions of regions available to bootstrap programs, see
        !             9: # section 3.4.1.2 (pp. III 3-14 - III 3-18) of the second edition of
        !            10: # the Alpha AXP Architecture Reference Manual.
        !            11:
        !            12: PRIMARY_LOAD_ADDRESS=  20000000        # "Region 1 start"
        !            13: SECONDARY_LOAD_ADDRESS=        20004000        # "Region 1 start" + 32k
        !            14: HEAP_LIMIT=            20040000        # "Region 1 start" + 256k
        !            15:
        !            16: CPPFLAGS+=             -DPRIMARY_LOAD_ADDRESS="0x${PRIMARY_LOAD_ADDRESS}"
        !            17: CPPFLAGS+=             -DSECONDARY_LOAD_ADDRESS="0x${SECONDARY_LOAD_ADDRESS}"
        !            18:
        !            19: CPPFLAGS+=             -D_STANDALONE
        !            20:
        !            21: XCPPFLAGS+=            -DHEAP_LIMIT="0x${HEAP_LIMIT}"
        !            22:
        !            23: CFLAGS+=               -fno-stack-protector -fno-builtin-printf \
        !            24:                        -fno-builtin-vprintf -fno-builtin-putchar \
        !            25:                        -fno-builtin-puts

CVSweb