[BACK]Return to bsd.prog.mk CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / share / mk

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/share/mk/bsd.prog.mk between version 1.1.1.1 and 1.288

version 1.1.1.1, 1993/03/21 09:45:37 version 1.288, 2014/03/02 22:22:05
Line 1 
Line 1 
 #       @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91  #       $NetBSD$
   #       @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94
   
 .if exists(${.CURDIR}/../Makefile.inc)  .ifndef HOSTPROG
 .include "${.CURDIR}/../Makefile.inc"  
 .endif  
   
 .SUFFIXES: .out .o .c .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0  .include <bsd.init.mk>
   .include <bsd.shlib.mk>
   .include <bsd.gcc.mk>
   
   #
   # Definitions and targets shared among all programs built by a single
   # Makefile.
   #
   
   ##### Basic targets
   realinstall:    proginstall scriptsinstall
   
   .gdbinit:
           rm -f .gdbinit
   .if defined(DESTDIR) && !empty(DESTDIR)
           echo "set solib-absolute-prefix ${DESTDIR}" > .gdbinit
   .else
           touch .gdbinit
   .endif
   .for __gdbinit in ${GDBINIT}
           echo "source ${__gdbinit}" >> .gdbinit
   .endfor
   
 .8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0:  CLEANFILES+= a.out [Ee]rrs mklog core *.core .gdbinit
         nroff -mandoc ${.IMPSRC} > ${.TARGET}  
   
 CFLAGS+=${COPTS}  
   
 STRIP?= -s  
   
 BINGRP?=        bin  
 BINOWN?=        bin  
 BINMODE?=       555  
   
 LIBC?=          /usr/lib/libc.a  
 LIBCOMPAT?=     /usr/lib/libcompat.a  
 LIBCURSES?=     /usr/lib/libcurses.a  
 LIBDBM?=        /usr/lib/libdbm.a  
 LIBDES?=        /usr/lib/libdes.a  
 LIBL?=          /usr/lib/libl.a  
 LIBKDB?=        /usr/lib/libkdb.a  
 LIBKRB?=        /usr/lib/libkrb.a  
 LIBM?=          /usr/lib/libm.a  
 LIBMP?=         /usr/lib/libmp.a  
 LIBPC?=         /usr/lib/libpc.a  
 LIBPLOT?=       /usr/lib/libplot.a  
 LIBRESOLV?=     /usr/lib/libresolv.a  
 LIBRPC?=        /usr/lib/sunrpc.a  
 LIBTERM?=       /usr/lib/libterm.a  
 LIBUTIL?=       /usr/lib/libutil.a  
   
 .if defined(SHAREDSTRINGS)  .if defined(SHAREDSTRINGS)
 CLEANFILES+=strings  CLEANFILES+=strings
 .c.o:  .c.o:
         ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -          ${CC} -E ${CPPFLAGS} ${CFLAGS} ${.IMPSRC} | xstr -c -
         @${CC} ${CFLAGS} -c x.c -o ${.TARGET}          @${CC} ${CPPFLAGS} ${CFLAGS} -c x.c -o ${.TARGET}
         @rm -f x.c  .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
 .endif  .endif
           @rm -f x.c
   
 .if defined(PROG)  .cc.o .cpp.o .cxx.o .C.o:
 .if defined(SRCS)          ${CXX} -E ${CPPFLAGS} ${CXXFLAGS} ${.IMPSRC} | xstr -c -
           @mv -f x.c x.cc
 OBJS+=  ${SRCS:R:S/$/.o/g}          @${CXX} ${CPPFLAGS} ${CXXFLAGS} -c x.cc -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
           @rm -f x.cc
   .endif
   
   .if defined(MKPIE) && (${MKPIE} != "no")
   CFLAGS+=        ${PIE_CFLAGS}
   AFLAGS+=        ${PIE_AFLAGS}
   LDFLAGS+=       ${PIE_LDFLAGS}
   .endif
   
   CFLAGS+=        ${COPTS}
   .if defined(MKDEBUG) && (${MKDEBUG} != "no")
   CFLAGS+=        -g
   .endif
   OBJCFLAGS+=     ${OBJCOPTS}
   MKDEP_SUFFIXES?=        .o .ln
   
   # CTF preserve debug symbols
   .if defined(MKDTRACE) && (${MKDTRACE} != "no") && (${CFLAGS:M-g} != "")
   CTFFLAGS+= -g
   CTFMFLAGS+= -g
   .if defined(HAVE_GCC) && ${HAVE_GCC} >= 48
   CFLAGS+=-gdwarf-2
   .endif
   .endif
   
   # ELF platforms depend on crti.o, crtbegin.o, crtend.o, and crtn.o
   .ifndef LIBCRTBEGIN
   LIBCRTBEGIN=    ${DESTDIR}/usr/lib/crti.o ${_GCC_CRTBEGIN}
   .MADE: ${LIBCRTBEGIN}
   .endif
   .ifndef LIBCRTEND
   LIBCRTEND=      ${_GCC_CRTEND} ${DESTDIR}/usr/lib/crtn.o
   .MADE: ${LIBCRTEND}
   .endif
   _SHLINKER=      ${SHLINKDIR}/ld.elf_so
   
   .ifndef LIBCRT0
   LIBCRT0=        ${DESTDIR}/usr/lib/crt0.o
   .MADE: ${LIBCRT0}
   .endif
   
   .ifndef LIBCRTI
   LIBCRTI=        ${DESTDIR}/usr/lib/crti.o
   .MADE: ${LIBCRTI}
   .endif
   
   ##### Installed system library definitions
   #
   #       E.g.
   #               LIBC?=${DESTDIR}/usr/lib/libc.a
   #               LIBX11?=${DESTDIR}/usr/X11R7/lib/libX11.a
   #       etc..
   #       NB:     If you are a library here, add it in bsd.README
   
   .for _lib in \
           archive \
           asn1 \
           atf_c \
           atf_cxx \
           bind9 \
           bluetooth \
           bsdmalloc \
           bz2 \
           c \
           c_pic \
           com_err \
           compat \
           crypt \
           crypto \
           crypto_idea \
           crypto_mdc2 \
           crypto_rc5 \
           curses \
           dbm \
           des \
           dns \
           edit \
           event \
           expat \
           fetch \
           fl \
           form \
           g2c \
           gcc \
           gnumalloc \
           gssapi \
           hdb \
           heimbase \
           heimntlm \
           hx509 \
           intl \
           ipsec \
           isc \
           isccc \
           isccfg \
           kadm5clnt \
           kadm5srv \
           kafs \
           krb5 \
           kvm \
           l \
           lber \
           ldap \
           ldap_r \
           lua \
           lwres \
           m \
           magic \
           menu \
           objc \
           ossaudio \
           pam \
           pcap \
           pci \
           pmc \
           posix \
           pthread \
           pthread_dbg \
           puffs \
           quota \
           radius \
           resolv \
           rmt \
           roken \
           rpcsvc \
           rt \
           rump \
           rumpfs_cd9660fs \
           rumpfs_efs \
           rumpfs_ext2fs \
           rumpfs_ffs \
           rumpfs_hfs \
           rumpfs_lfs \
           rumpfs_msdosfs \
           rumpfs_nfs \
           rumpfs_ntfs \
           rumpfs_syspuffs \
           rumpfs_tmpfs \
           rumpfs_udf \
           rumpfs_ufs \
           rumpuser \
           saslc \
           skey \
           sl \
           sqlite3 \
           ss \
           ssh \
           ssl \
           ssp \
           stdcxx \
           supcxx \
           terminfo \
           tre \
           usbhid \
           util \
           wind \
           wrap \
           y \
           z
   .ifndef LIB${_lib:tu}
   LIB${_lib:tu}=  ${DESTDIR}/usr/lib/lib${_lib:S/xx/++/:S/atf_c/atf-c/}.a
   .MADE:          ${LIB${_lib:tu}}        # Note: ${DESTDIR} will be expanded
   .endif
   .endfor
   
   # PAM applications, if linked statically, need more libraries
   .if (${MKPIC} == "no")
   .if (${MKCRYPTO} != "no")
   PAM_STATIC_LDADD+= -lssh
   PAM_STATIC_DPADD+= ${LIBSSH}
   .endif
   .if (${MKKERBEROS} != "no")
   PAM_STATIC_LDADD+= -lkafs -lkrb5 -lhx509 -lwind -lasn1 \
           -lroken -lcom_err -lheimbase -lcrypto
   PAM_STATIC_DPADD+= ${LIBKAFS} ${LIBKRB5} ${LIBHX509} ${LIBWIND} ${LIBASN1} \
           ${LIBROKEN} ${LIBCOM_ERR} ${LIBHEIMBASE} ${LIBCRYPTO}
   .endif
   .if (${MKSKEY} != "no")
   PAM_STATIC_LDADD+= -lskey
   PAM_STATIC_DPADD+= ${LIBSKEY}
   .endif
   PAM_STATIC_LDADD+= -lradius -lcrypt -lrpcsvc -lutil
   PAM_STATIC_DPADD+= ${LIBRADIUS} ${LIBCRYPT} ${LIBRPCSVC} ${LIBUTIL}
   .else
   PAM_STATIC_LDADD=
   PAM_STATIC_DPADD=
   .endif
   
 ${PROG}: ${OBJS} ${LIBC} ${DPADD}  #       NB:     If you are a library here, add it in bsd.README
         ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}  .for _lib in \
           FS \
           GL \
           GLU \
           ICE \
           SM \
           X11 \
           XTrap \
           Xau \
           Xaw \
           Xdmcp \
           Xext \
           Xfont \
           Xft \
           Xi \
           Xinerama \
           Xmu \
           Xmuu \
           Xpm \
           Xrandr \
           Xrender \
           Xss \
           Xt \
           Xtst \
           Xv \
           Xxf86dga \
           Xxf86misc \
           Xxf86vm \
           dps \
           fntstubs \
           fontcache \
           fontconfig \
           fontenc \
           freetype \
           lbxutil \
           xkbfile
   .ifndef LIB${_lib:tu}
   LIB${_lib:tu}=  ${DESTDIR}${X11USRLIBDIR}/lib${_lib}.a
   .MADE:          ${LIB${_lib:tu}}        # Note: ${DESTDIR} will be expanded
   .endif
   .endfor
   
   # Ugly one-offs
   LIBX11_XCB=     ${DESTDIR}${X11USRLIBDIR}/libX11-xcb.a
   LIBXCB= ${DESTDIR}${X11USRLIBDIR}/libxcb.a
   
   .if defined(RESCUEDIR)
   CPPFLAGS+=      -DRESCUEDIR=\"${RESCUEDIR}\"
   .endif
   
   _PROGLDOPTS=
   .if ${SHLINKDIR} != "/usr/libexec"      # XXX: change or remove if ld.so moves
   _PROGLDOPTS+=   -Wl,-dynamic-linker=${_SHLINKER}
   .endif
   .if ${SHLIBDIR} != "/usr/lib"
   _PROGLDOPTS+=   -Wl,-rpath,${SHLIBDIR} \
                   -L=${SHLIBDIR}
   .elif ${SHLIBINSTALLDIR} != "/usr/lib"
   _PROGLDOPTS+=   -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR} \
                   -L=${SHLIBINSTALLDIR}
   .endif
   
   __proginstall: .USE
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
                   ${STRIPFLAG} ${.ALLSRC} ${.TARGET}
   
   __progrumpinstall: .USE
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${RUMPBINOWN} -g ${RUMPBINGRP} -m ${RUMPBINMODE} \
                   ${STRIPFLAG} ${.ALLSRC} ${.TARGET}
   
   __progdebuginstall: .USE
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \
                   ${.ALLSRC} ${.TARGET}
   
   
   
   #
   # Backwards compatibility with Makefiles that assume that bsd.prog.mk
   # can only build a single binary.
   #
   
   _APPEND_MANS=yes
   _APPEND_SRCS=yes
   
   _CCLINKFLAGS=
   
   .if defined(PROG_CXX)
   PROG=           ${PROG_CXX}
   _CCLINK=        ${CXX} ${_CCLINKFLAGS}
   .endif
   
   .if defined(RUMPPRG)
   PROG=                   ${RUMPPRG}
   . ifndef CRUNCHEDPROG
   .  if (${MKRUMP} != "no")
   PROGS=                  ${RUMPPRG} rump.${RUMPPRG}
   .  else
   PROGS=                  ${RUMPPRG}
   .  endif
   .  if defined(SRCS)
   .   if (${MKRUMP} != "no")
   SRCS.rump.${PROG}:=     ${SRCS} ${PROG}_rumpops.c ${RUMPSRCS}
   .   endif
   SRCS+=                  ${PROG}_hostops.c
   .  else
   SRCS=                   ${PROG}.c ${PROG}_hostops.c
   .   if (${MKRUMP} != "no")
   SRCS.rump.${PROG}=      ${PROG}.c ${PROG}_rumpops.c ${RUMPSRCS}
   .   endif
   .  endif
   .   if (${MKRUMP} != "no")
   DPSRCS+=                ${PROG}_rumpops.c ${RUMPSRCS}
   LDADD.rump.${PROG}+=    -lrumpclient
   DPADD.rump.${PROG}+=    ${LIBRUMPCLIENT}
   MAN.rump.${PROG}=       # defined but feeling empty
   _RUMPINSTALL.rump.${PROG}=# defined
   .   endif
   . else # CRUNCHEDPROG
   PROGS=                  ${PROG}
   CPPFLAGS+=              -DCRUNCHOPS
   . endif
   .endif
   
 .else defined(PROG)  .if defined(PROG)
   _CCLINK?=       ${CC} ${_CCLINKFLAGS}
   .  if defined(MAN)
   MAN.${PROG}=    ${MAN}
   _APPEND_MANS=   no
   .  endif
   .  if !defined(OBJS)
   OBJS=           ${OBJS.${PROG}}
   .  endif
   .  if defined(PROGNAME)
   PROGNAME.${PROG}=       ${PROGNAME}
   .  endif
   .  if defined(SRCS)
   SRCS.${PROG}=   ${SRCS}
   _APPEND_SRCS=   no
   .  endif
   .endif
   
   # Turn the single-program PROG and PROG_CXX variables into their multi-word
   # counterparts, PROGS and PROGS_CXX.
   .if !defined(RUMPPRG)
   .  if defined(PROG_CXX) && !defined(PROGS_CXX)
   PROGS_CXX=      ${PROG_CXX}
   .  elif defined(PROG) && !defined(PROGS)
   PROGS=          ${PROG}
   .  endif
   .endif
   
   ##### Libraries that this may depend upon.
   .if defined(PROGDPLIBS)                                                 # {
   .for _lib _dir in ${PROGDPLIBS}
   .if !defined(BINDO.${_lib})
   PROGDO.${_lib}!=        cd "${_dir}" && ${PRINTOBJDIR}
   .MAKEOVERRIDES+=PROGDO.${_lib}
   .endif
   LDADD+=         -L${PROGDO.${_lib}} -l${_lib}
   .if exists(${PROGDO.${_lib}}/lib${_lib}_pic.a)
   DPADD+=         ${PROGDO.${_lib}}/lib${_lib}_pic.a
   .elif exists(${PROGDO.${_lib}}/lib${_lib}.so)
   DPADD+=         ${PROGDO.${_lib}}/lib${_lib}.so
   .else
   DPADD+=         ${PROGDO.${_lib}}/lib${_lib}.a
   .endif
   .endfor
   .endif                                                                  # }
   #
   # Per-program definitions and targets.
   #
   
   _CCLINK.CDEFAULT= ${CC} ${_CCLINKFLAGS}
   # Definitions specific to C programs.
   .for _P in ${PROGS}
   SRCS.${_P}?=    ${_P}.c
   _CCLINK.${_P}=  ${CC} ${_CCLINKFLAGS}
   _CFLAGS.${_P}=  ${CFLAGS} ${CPUFLAGS}
   _CPPFLAGS.${_P}=        ${CPPFLAGS}
   _COPTS.${_P}=   ${COPTS}
   .endfor
   
   _CCLINK.CXXDEFAULT= ${CXX} ${_CCLINKFLAGS}
   # Definitions specific to C++ programs.
   .for _P in ${PROGS_CXX}
   SRCS.${_P}?=    ${_P}.cc
   _CCLINK.${_P}=  ${CXX} ${_CCLINKFLAGS}
   .endfor
   
   # Language-independent definitions.
   .for _P in ${PROGS} ${PROGS_CXX}                                        # {
   
   BINDIR.${_P}?=          ${BINDIR}
   PROGNAME.${_P}?=        ${_P}
   
   .if ${MKDEBUG} != "no" && !commands(${_P})
   _PROGDEBUG.${_P}:=      ${PROGNAME.${_P}}.debug
   .endif
   
   .if defined(PAXCTL_FLAGS)
   PAXCTL_FLAGS.${_P}?= ${PAXCTL_FLAGS}
   .endif
   
   ##### PROG specific flags.
   
   _DPADD.${_P}=           ${DPADD}    ${DPADD.${_P}}
   _LDADD.${_P}=           ${LDADD}    ${LDADD.${_P}}
   _LDFLAGS.${_P}=         ${LDFLAGS}  ${LDFLAGS.${_P}}
   _LDSTATIC.${_P}=        ${LDSTATIC} ${LDSTATIC.${_P}}
   
   ##### Build and install rules
   .if !empty(_APPEND_SRCS:M[Yy][Ee][Ss])
   SRCS+=          ${SRCS.${_P}}   # For bsd.dep.mk
   .endif
   
   _YPSRCS.${_P}=  ${SRCS.${_P}:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS.${_P}:M*.y:.y=.h}}
   
   DPSRCS+=                ${_YPSRCS.${_P}}
   CLEANFILES+=            ${_YPSRCS.${_P}}
   
   .if !empty(SRCS.${_P}:N*.h:N*.sh:N*.fth)
   OBJS.${_P}+=    ${SRCS.${_P}:N*.h:N*.sh:N*.fth:R:S/$/.o/g}
   LOBJS.${_P}+=   ${LSRCS:.c=.ln} ${SRCS.${_P}:M*.c:.c=.ln}
   .endif
   
   .if defined(OBJS.${_P}) && !empty(OBJS.${_P})                   # {
   .NOPATH: ${OBJS.${_P}} ${_P} ${_YPSRCS.${_P}}
   
   .if (defined(USE_COMBINE) && ${USE_COMBINE} != "no" && !commands(${_P}) \
      && (${_CCLINK.${_P}} == ${_CCLINK.CDEFAULT} \
          || ${_CCLINK.${_P}} == ${_CCLINK.CXXDEFAULT}) \
      && !defined(NOCOMBINE.${_P}) && !defined(NOCOMBINE))
   .for f in ${SRCS.${_P}:N*.h:N*.sh:N*.fth:C/\.[yl]$/.c/g}
   #_XFLAGS.$f := ${CPPFLAGS.$f:D1} ${CPUFLAGS.$f:D2} \
   #     ${COPTS.$f:D3} ${OBJCOPTS.$f:D4} ${CXXFLAGS.$f:D5}
   .if (${CPPFLAGS.$f:D1} == "1" || ${CPUFLAGS.$f:D2} == "2" \
        || ${COPTS.$f:D3} == "3" || ${OBJCOPTS.$f:D4} == "4" \
        || ${CXXFLAGS.$f:D5} == "5") \
       || ("${f:M*.[cyl]}" == "" || commands(${f:R:S/$/.o/}))
   XOBJS.${_P}+=   ${f:R:S/$/.o/}
   .else
   XSRCS.${_P}+=   ${f}
   NODPSRCS+=      ${f}
   .endif
   .endfor
   
 SRCS= ${PROG}.c  ${_P}: .gdbinit ${LIBCRT0} ${LIBCRTI} ${XOBJS.${_P}} ${SRCS.${_P}} \
       ${DPSRCS} ${LIBC} ${LIBCRTBEGIN} ${LIBCRTEND} ${_DPADD.${_P}}
           ${_MKTARGET_LINK}
   .if defined(DESTDIR)
           ${_CCLINK.${_P}} -Wl,-nostdlib \
               ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} ${_PROGLDOPTS} \
               -B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ \
               -MD --combine ${_CPPFLAGS.${_P}} ${_CFLAGS.${_P}} ${_COPTS.${_P}} \
               ${XSRCS.${_P}:@.SRC.@${.ALLSRC:M*.c:M*${.SRC.}}@:O:u} ${XOBJS.${_P}} \
               ${_LDADD.${_P}} -L${_GCC_LIBGCCDIR} -L${DESTDIR}/usr/lib
   .else
           ${_CCLINK.${_P}} ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} ${_PROGLDOPTS} \
               -MD --combine ${_CPPFLAGS.${_P}} ${_COPTS.${_P}}
               ${XSRCS.${_P}:@.SRC.@${.ALLSRC:M*.c:M*${.SRC.}}@:O:u} ${XOBJS.${_P}} \
               ${_LDADD.${_P}}
   .endif  # defined(DESTDIR)
   .if defined(CTFMERGE)
           ${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${OBJS.${_P}}
   .endif
   .if defined(PAXCTL_FLAGS.${_P})
           ${PAXCTL} ${PAXCTL_FLAGS.${_P}} ${.TARGET}
   .endif
   .if ${MKSTRIPIDENT} != "no"
           ${OBJCOPY} -R .ident ${.TARGET}
   .endif
   
 ${PROG}: ${SRCS} ${LIBC} ${DPADD}  CLEANFILES+=    ${_P}.d
         ${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} ${LDADD}  .if exists(${_P}.d)
   .include "${_P}.d"              # include -MD depend for program.
   .endif
   .else   # USE_COMBINE
   
 MKDEP=  -p  ${OBJS.${_P}} ${LOBJS.${_P}}: ${DPSRCS}
   
   ${_P}: .gdbinit ${LIBCRT0} ${LIBCRTI} ${OBJS.${_P}} ${LIBC} ${LIBCRTBEGIN} \
       ${LIBCRTEND} ${_DPADD.${_P}}
   .if !commands(${_P})
           ${_MKTARGET_LINK}
           ${_CCLINK.${_P}} \
               ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} \
               ${OBJS.${_P}} ${_PROGLDOPTS} ${_LDADD.${_P}}
   .if defined(CTFMERGE)
           ${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${OBJS.${_P}}
 .endif  .endif
   .if defined(PAXCTL_FLAGS.${_P})
 .if     !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \          ${PAXCTL} ${PAXCTL_FLAGS.${_P}} ${.TARGET}
         !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \  
         !defined(MAN7) && !defined(MAN8) && !defined(NOMAN)  
 MAN1=   ${PROG}.0  
 .endif  .endif
   .if ${MKSTRIPIDENT} != "no"
           ${OBJCOPY} -R .ident ${.TARGET}
 .endif  .endif
 MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}  .endif  # !commands(${_P})
   .endif  # USE_COMBINE
   
 _PROGSUBDIR: .USE  ${_P}.ro: ${OBJS.${_P}} ${_DPADD.${_P}}
 .if defined(SUBDIR) && !empty(SUBDIR)          ${_MKTARGET_LINK}
         @for entry in ${SUBDIR}; do \          ${CC} ${LDFLAGS:N-Wl,-pie} -nostdlib -r -Wl,-dc -o ${.TARGET} ${OBJS.${_P}}
                 (echo "===> $$entry"; \  
                 if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \  .if defined(_PROGDEBUG.${_P})
                         cd ${.CURDIR}/$${entry}.${MACHINE}; \  ${_PROGDEBUG.${_P}}: ${_P}
                 else \          ${_MKTARGET_CREATE}
                         cd ${.CURDIR}/$${entry}; \          (  ${OBJCOPY} --only-keep-debug ${_P} ${_PROGDEBUG.${_P}} \
                 fi; \          && ${OBJCOPY} --strip-debug -p -R .gnu_debuglink \
                 ${MAKE} ${.TARGET:S/realinstall/install/:S/.depend/depend/}); \                  --add-gnu-debuglink=${_PROGDEBUG.${_P}} ${_P} \
         done          ) || (rm -f ${_PROGDEBUG.${_P}}; false)
 .endif  .endif
   
 .MAIN: all  .endif  # defined(OBJS.${_P}) && !empty(OBJS.${_P})                     # }
 all: ${PROG} ${MANALL} _PROGSUBDIR  
   
 .if !target(clean)  .if !defined(MAN.${_P})
 clean: _PROGSUBDIR  MAN.${_P}=      ${_P}.1
         rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}  .endif  # !defined(MAN.${_P})
   .if !empty(_APPEND_MANS:M[Yy][Ee][Ss])
   MAN+=           ${MAN.${_P}}
 .endif  .endif
   
 .if !target(cleandir)  realall: ${_P} ${_PROGDEBUG.${_P}}
 cleandir: _PROGSUBDIR  
         rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}  CLEANFILES+= ${_P} ${_PROGDEBUG.${_P}}
         rm -f .depend ${MANALL}  
   .if defined(OBJS.${_P}) && !empty(OBJS.${_P})
   CLEANFILES+= ${OBJS.${_P}} ${LOBJS.${_P}}
 .endif  .endif
   
 # some of the rules involve .h sources, so remove them from mkdep line  _PROG_INSTALL+= proginstall-${_P}
 .if !target(depend)  
 depend: .depend _PROGSUBDIR  .if !target(proginstall-${_P})                                          # {
 .depend: ${SRCS}  proginstall-${_P}::     ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}} \
 .if defined(PROG)                  ${_PROGDEBUG.${_P}:D${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}}
         mkdep ${MKDEP} ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c}  .PRECIOUS:      ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}} \
                   ${_PROGDEBUG.${_P}:D${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}}
   
   .if ${MKUPDATE} == "no"
   .if defined(_RUMPINSTALL.${_P})
   ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! ${_P} __progrumpinstall
   .else
   ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! ${_P} __proginstall
 .endif  .endif
   .if !defined(BUILD) && !make(all) && !make(${_P})
   ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! .MADE
 .endif  .endif
   .if defined(_PROGDEBUG.${_P})
 .if !target(install)  ${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! ${_PROGDEBUG.${_P}} __progdebuginstall
 .if !target(beforeinstall)  .if !defined(BUILD) && !make(all) && !make(${_P})
 beforeinstall:  ${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! .MADE
   .endif
   .endif  #  define(_PROGDEBUG.${_P})
   .else   # MKUPDATE != no
   .if defined(_RUMPINSTALL.${_P})
   ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: ${_P} __progrumpinstall
   .else
   ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: ${_P} __proginstall
 .endif  .endif
 .if !target(afterinstall)  .if !defined(BUILD) && !make(all) && !make(${_P})
 afterinstall:  ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: .MADE
 .endif  .endif
   .if defined(_PROGDEBUG.${_P})
 realinstall: _PROGSUBDIR  ${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}: ${_PROGDEBUG.${_P}} __progdebuginstall
 .if defined(PROG)  .if !defined(BUILD) && !make(all) && !make(${_P})
         install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \  ${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}: .MADE
             ${PROG} ${DESTDIR}${BINDIR}  
 .endif  .endif
 .if defined(HIDEGAME)  .endif  #  defined(_PROGDEBUG.${_P})
         (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG}; \  .endif  # MKUPDATE != no
             chown games.bin ${PROG})  
 .endif  .endif  # !target(proginstall-${_P})                                    # }
 .if defined(LINKS) && !empty(LINKS)  
         @set ${LINKS}; \  lint: lint-${_P}
         while test $$# -ge 2; do \  lint-${_P}: ${LOBJS.${_P}}
                 l=${DESTDIR}$$1; \  .if defined(LOBJS.${_P}) && !empty(LOBJS.${_P})
                 shift; \          ${LINT} ${LINTFLAGS} ${_LDFLAGS.${_P}:C/-L[  ]*/-L/Wg:M-L*} ${LOBJS.${_P}} ${_LDADD.${_P}}
                 t=${DESTDIR}$$1; \  
                 shift; \  
                 echo $$t -\> $$l; \  
                 rm -f $$t; \  
                 ln $$l $$t; \  
         done; true  
 .endif  
   
 install: maninstall  
 maninstall: afterinstall  
 afterinstall: realinstall  
 realinstall: beforeinstall  
 .endif  .endif
   
 .if !target(lint)  .endfor # _P in ${PROGS} ${PROGS_CXX}                                   # }
 lint: ${SRCS} _PROGSUBDIR  
 .if defined(PROG)  .if defined(OBJS) && !empty(OBJS) && \
         @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1      (empty(PROGS) && empty(PROGS_CXX))
   CLEANFILES+= ${OBJS} ${LOBJS}
 .endif  .endif
   
   .if !target(proginstall)
   proginstall:: ${_PROG_INSTALL}
 .endif  .endif
   .PHONY:         proginstall
   
   
   
   realall: ${SCRIPTS}
   .if defined(SCRIPTS) && !target(scriptsinstall)                         # {
   SCRIPTSDIR?=${BINDIR}
   SCRIPTSOWN?=${BINOWN}
   SCRIPTSGRP?=${BINGRP}
   SCRIPTSMODE?=${BINMODE}
   
   scriptsinstall:: ${SCRIPTS:@S@${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}@}
   .PRECIOUS: ${SCRIPTS:@S@${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}@}
   
   __scriptinstall: .USE
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} \
               -o ${SCRIPTSOWN_${.ALLSRC:T}:U${SCRIPTSOWN}} \
               -g ${SCRIPTSGRP_${.ALLSRC:T}:U${SCRIPTSGRP}} \
               -m ${SCRIPTSMODE_${.ALLSRC:T}:U${SCRIPTSMODE}} \
               ${.ALLSRC} ${.TARGET}
   
 .if !target(obj)  .for S in ${SCRIPTS:O:u}
 .if defined(NOOBJ)  .if ${MKUPDATE} == "no"
 obj: _PROGSUBDIR  ${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}! ${S} __scriptinstall
   .if !defined(BUILD) && !make(all) && !make(${S})
   ${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}! .MADE
   .endif
 .else  .else
 obj: _PROGSUBDIR  ${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}: ${S} __scriptinstall
         @cd ${.CURDIR}; rm -rf obj; \  .if !defined(BUILD) && !make(all) && !make(${S})
         here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src/,,'`; \  ${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}: .MADE
         echo "$$here -> $$dest"; ln -s $$dest obj; \  
         if test -d /usr/obj -a ! -d $$dest; then \  
                 mkdir -p $$dest; \  
         else \  
                 true; \  
         fi;  
 .endif  .endif
 .endif  .endif
   .endfor
   .endif                                                                  # }
   
 .if !target(tags)  .if !target(scriptsinstall)
 tags: ${SRCS} _PROGSUBDIR  scriptsinstall::
 .if defined(PROG)  
         -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC} | \  
             sed "s;\${.CURDIR}/;;" > tags  
 .endif  
 .endif  .endif
   .PHONY:         scriptsinstall
   
 .if !defined(NOMAN)  ##### Pull in related .mk logic
   LINKSOWN?= ${BINOWN}
   LINKSGRP?= ${BINGRP}
   LINKSMODE?= ${BINMODE}
 .include <bsd.man.mk>  .include <bsd.man.mk>
 .endif  .include <bsd.nls.mk>
   .include <bsd.files.mk>
   .include <bsd.inc.mk>
   .include <bsd.links.mk>
   .include <bsd.sys.mk>
   .include <bsd.dep.mk>
   .include <bsd.clang-analyze.mk>
   .include <bsd.clean.mk>
   
   ${TARGETS}:     # ensure existence
   
   .endif  # HOSTPROG

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.288

CVSweb <webmaster@jp.NetBSD.org>