[BACK]Return to bsd.own.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Annotation of src/share/mk/bsd.own.mk, Revision 1.133

1.133   ! miod        1: #      $OpenBSD: bsd.own.mk,v 1.132 2012/12/01 21:08:20 miod Exp $
1.7       deraadt     2: #      $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
                      3:
1.15      millert     4: # Host-specific overrides
1.7       deraadt     5: .if defined(MAKECONF) && exists(${MAKECONF})
                      6: .include "${MAKECONF}"
                      7: .elif exists(/etc/mk.conf)
                      8: .include "/etc/mk.conf"
1.26      art         9: .endif
1.1       deraadt    10:
1.51      espie      11: # Set `WARNINGS' to `yes' to add appropriate warnings to each compilation
                     12: WARNINGS?=     no
1.15      millert    13: # Set `SKEY' to `yes' to build with support for S/key authentication.
                     14: SKEY?=         yes
                     15: # Set `KERBEROS5' to `yes' to build with support for Kerberos5 authentication.
1.47      hin        16: KERBEROS5?=    yes
1.19      downsj     17: # Set `YP' to `yes' to build with support for NIS/YP.
1.15      millert    18: YP?=           yes
1.19      downsj     19: # Set `TCP_WRAPPERS' to `yes' to build certain networking daemons with
                     20: # integrated support for libwrap.
                     21: TCP_WRAPPERS?= yes
1.32      niklas     22: # Set `DEBUGLIBS' to `yes' to build libraries with debugging symbols
1.33      marc       23: DEBUGLIBS?=    no
1.61      pvalchev   24: # Set toolchain to be able to know differences.
1.133   ! miod       25: .if ${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "vax"
1.82      mickey     26: ELF_TOOLCHAIN?=        no
                     27: .else
1.50      drahn      28: ELF_TOOLCHAIN?=        yes
                     29: .endif
1.71      espie      30:
1.132     miod       31: GCC2_ARCH=m68k vax
1.130     deraadt    32: GCC4_ARCH=alpha amd64 arm hppa hppa64 i386 ia64 mips64 mips64el powerpc sh sparc sparc64
1.126     deraadt    33: BINUTILS217_ARCH=hppa64 ia64
1.127     deraadt    34:
                     35: # i386 PIE works; but there are RAMDISK fitting problems.
1.131     deraadt    36: # powerpc has problems on some "embedded" powerpc.
                     37: # arm needs binutils-2.17, which still lacks W^X support
1.130     deraadt    38: PIE_ARCH=alpha amd64 hppa mips64 mips64el sh sparc64
1.106     drahn      39:
                     40: .for _arch in ${MACHINE_ARCH}
                     41: .if !empty(GCC2_ARCH:M${_arch})
1.101     espie      42: COMPILER_VERSION?=gcc2
1.106     drahn      43: .elif !empty(GCC4_ARCH:M${_arch})
1.101     espie      44: COMPILER_VERSION?=gcc4
1.92      mickey     45: .else
1.101     espie      46: COMPILER_VERSION?=gcc3
1.107     drahn      47: .endif
                     48:
                     49: .if !empty(BINUTILS217_ARCH:M${_arch})
                     50: BINUTILS_VERSION=binutils-2.17
                     51: .else
                     52: BINUTILS_VERSION=binutils
1.72      mickey     53: .endif
1.121     pascal     54:
                     55: .if !empty(PIE_ARCH:M${_arch})
                     56: NOPIE_FLAGS=-fno-pie
1.124     pascal     57: NOPIE_LDFLAGS=-nopie
1.123     pascal     58: PIE_DEFAULT=${DEFAULT_PIE_DEF}
1.121     pascal     59: .else
                     60: NOPIE_FLAGS=
1.123     pascal     61: PIE_DEFAULT=
1.121     pascal     62: .endif
1.106     drahn      63: .endfor
1.117     matthew    64:
                     65: .if ${COMPILER_VERSION} == "gcc4"
                     66: VISIBILITY_HIDDEN?=-fvisibility=hidden
                     67: .endif
1.32      niklas     68:
1.1       deraadt    69: # where the system object and source trees are kept; can be configurable
                     70: # by the user in case they want them in ~/foosrc and ~/fooobj, for example
                     71: BSDSRCDIR?=    /usr/src
                     72: BSDOBJDIR?=    /usr/obj
                     73:
                     74: BINGRP?=       bin
1.9       deraadt    75: BINOWN?=       root
1.1       deraadt    76: BINMODE?=      555
                     77: NONBINMODE?=   444
1.28      espie      78: DIRMODE?=      755
1.1       deraadt    79:
1.18      tholo      80: SHAREDIR?=     /usr/share
                     81: SHAREGRP?=     bin
                     82: SHAREOWN?=     root
                     83: SHAREMODE?=    ${NONBINMODE}
1.1       deraadt    84:
1.105     schwarze   85: MANDIR?=       /usr/share/man/man
1.1       deraadt    86: MANGRP?=       bin
1.9       deraadt    87: MANOWN?=       root
1.1       deraadt    88: MANMODE?=      ${NONBINMODE}
                     89:
                     90: LIBDIR?=       /usr/lib
                     91: LIBGRP?=       ${BINGRP}
                     92: LIBOWN?=       ${BINOWN}
                     93: LIBMODE?=      ${NONBINMODE}
                     94:
1.119     haesbaer   95: DOCDIR?=       /usr/share/doc
1.1       deraadt    96: DOCGRP?=       bin
1.9       deraadt    97: DOCOWN?=       root
1.119     haesbaer   98: DOCMODE?=      ${NONBINMODE}
1.5       tholo      99:
                    100: LKMDIR?=       /usr/lkm
                    101: LKMGRP?=       ${BINGRP}
                    102: LKMOWN?=       ${BINOWN}
                    103: LKMMODE?=      ${NONBINMODE}
1.1       deraadt   104:
                    105: NLSDIR?=       /usr/share/nls
                    106: NLSGRP?=       bin
1.9       deraadt   107: NLSOWN?=       root
1.1       deraadt   108: NLSMODE?=      ${NONBINMODE}
1.93      espie     109:
                    110: LOCALEDIR?=    /usr/share/locale
                    111: LOCALEGRP?=    wheel
                    112: LOCALEOWN?=    root
                    113: LOCALEMODE?=   ${NONBINMODE}
1.119     haesbaer  114:
                    115: .if !defined(CDIAGFLAGS)
                    116: CDIAGFLAGS=    -Wall -Wpointer-arith -Wuninitialized -Wstrict-prototypes
                    117: CDIAGFLAGS+=   -Wmissing-prototypes -Wunused -Wsign-compare -Wbounded
                    118: CDIAGFLAGS+=   -Wshadow
1.120     sthen     119: .  if ${COMPILER_VERSION} == "gcc4"
                    120: CDIAGFLAGS+=   -Wdeclaration-after-statement
                    121: .  endif
1.119     haesbaer  122: .endif
1.56      espie     123:
1.57      espie     124: # Shared files for system gnu configure, not used yet
                    125: GNUSYSTEM_AUX_DIR?=${BSDSRCDIR}/share/gnu
1.1       deraadt   126:
1.17      millert   127: INSTALL_COPY?= -c
1.13      niklas    128: .ifndef DEBUG
1.17      millert   129: INSTALL_STRIP?=        -s
1.13      niklas    130: .endif
1.12      downsj    131:
                    132: # This may be changed for _single filesystem_ configurations (such as
                    133: # routers and other embedded systems); normal systems should leave it alone!
1.11      downsj    134: STATIC?=       -static
1.1       deraadt   135:
                    136: # Define SYS_INCLUDE to indicate whether you want symbolic links to the system
                    137: # source (``symlinks''), or a separate copy (``copies''); (latter useful
                    138: # in environments where it's not possible to keep /sys publicly readable)
                    139: #SYS_INCLUDE=  symlinks
                    140:
                    141: # don't try to generate PIC versions of libraries on machines
                    142: # which don't support PIC.
1.99      drahn     143: .if ${MACHINE_ARCH} == "m88k" || ${MACHINE_ARCH} == "vax"
1.1       deraadt   144: NOPIC=
1.58      drahn     145: .endif
                    146:
1.86      pvalchev  147: # pic relocation flags.
1.96      martin    148: .if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "sparc64")
1.100     deraadt   149: PICFLAG?=-fPIC
1.86      pvalchev  150: .else
1.100     deraadt   151: PICFLAG?=-fpic
1.86      pvalchev  152: . if ${MACHINE_ARCH} == "m68k"
                    153: # Function CSE makes gas -k not recognize external function calls as lazily
                    154: # resolvable symbols, thus sometimes making ld.so report undefined symbol
                    155: # errors on symbols found in shared library members that would never be
                    156: # called.  Ask niklas@openbsd.org for details.
                    157: PICFLAG+=-fno-function-cse
                    158: . endif
1.62      art       159: .endif
1.86      pvalchev  160:
1.95      brad      161: .if ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64"
1.58      drahn     162: ASPICFLAG=-KPIC
1.95      brad      163: .elif ${ELF_TOOLCHAIN:L} == "no"
1.58      drahn     164: ASPICFLAG=-k
1.121     pascal    165: .endif
                    166:
1.129     kettenis  167: .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "powerpc" || \
                    168:     ${MACHINE_ARCH} == "sparc64"
1.121     pascal    169: # big PIE
                    170: DEFAULT_PIE_DEF=-DPIE_DEFAULT=2
                    171: .else
                    172: # small pie
                    173: DEFAULT_PIE_DEF=-DPIE_DEFAULT=1
1.14      rahnds    174: .endif
                    175:
                    176: # don't try to generate PROFILED versions of libraries on machines
                    177: # which don't support profiling.
1.87      miod      178: .if 0
1.14      rahnds    179: NOPROFILE=
1.1       deraadt   180: .endif
1.31      espie     181:
                    182: BSD_OWN_MK=Done
1.41      espie     183:
                    184: .PHONY: spell clean cleandir obj manpages print all \
1.98      espie     185:        depend beforedepend afterdepend cleandepend subdirdepend \
1.115     jsg       186:        all cleanman nlsinstall cleannls includes \
1.41      espie     187:        beforeinstall realinstall maninstall afterinstall install