Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/share/mk/bsd.prog.mk,v rcsdiff: /ftp/cvs/cvsroot/src/share/mk/bsd.prog.mk,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.1 retrieving revision 1.245 diff -u -p -r1.1 -r1.245 --- src/share/mk/bsd.prog.mk 1993/03/21 09:45:37 1.1 +++ src/share/mk/bsd.prog.mk 2009/12/14 01:00:46 1.245 @@ -1,177 +1,456 @@ -# @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 +# $NetBSD: bsd.prog.mk,v 1.245 2009/12/14 01:00:46 matt Exp $ +# @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94 -.if exists(${.CURDIR}/../Makefile.inc) -.include "${.CURDIR}/../Makefile.inc" +.ifndef HOSTPROG + +.include +.include +.include + +# +# Definitions and targets shared among all programs built by a single +# Makefile. +# + +##### Basic targets +realinstall: proginstall scriptsinstall +clean: cleanprog + +.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 -.SUFFIXES: .out .o .c .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0 +cleanobjs: .PHONY -.8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0: - 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 +cleanprog: .PHONY cleanobjs cleanextra + rm -f a.out [Ee]rrs mklog core *.core .gdbinit .if defined(SHAREDSTRINGS) CLEANFILES+=strings .c.o: - ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c - - @${CC} ${CFLAGS} -c x.c -o ${.TARGET} + ${CC} -E ${CPPFLAGS} ${CFLAGS} ${.IMPSRC} | xstr -c - + @${CC} ${CPPFLAGS} ${CFLAGS} -c x.c -o ${.TARGET} @rm -f x.c + +.cc.o .cpp.o .cxx.o .C.o: + ${CXX} -E ${CPPFLAGS} ${CXXFLAGS} ${.IMPSRC} | xstr -c - + @mv -f x.c x.cc + @${CXX} ${CPPFLAGS} ${CXXFLAGS} -c x.cc -o ${.TARGET} + @rm -f x.cc .endif -.if defined(PROG) -.if defined(SRCS) +.if defined(MKPIE) && (${MKPIE} != "no") +CFLAGS+= ${PIE_CFLAGS} +AFLAGS+= ${PIE_AFLAGS} +LDFLAGS+= ${PIE_LDFLAGS} +.endif + +##### Default values +.if empty(CPPFLAGS:M-nostdinc) +CPPFLAGS+= ${DESTDIR:D-nostdinc ${CPPFLAG_ISYSTEM} ${DESTDIR}/usr/include} +.endif +.if empty(CXXFLAGS:M-nostdinc++) +CXXFLAGS+= ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEMXX} ${DESTDIR}/usr/include/g++} +.endif +CFLAGS+= ${COPTS} +OBJCFLAGS+= ${OBJCOPTS} +MKDEP_SUFFIXES?= .o .ln + +# ELF platforms depend on crti.o, crtbegin.o, crtend.o, and crtn.o +.if ${OBJECT_FMT} == "ELF" +.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 +.else +LIBCRTBEGIN?= +LIBCRTEND?= +_SHLINKER= ${SHLINKDIR}/ld.so +.endif + +.ifndef LIBCRT0 +LIBCRT0= ${DESTDIR}/usr/lib/crt0.o +.MADE: ${LIBCRT0} +.endif + +##### Installed system library definitions +# +# E.g. +# LIBC?=${DESTDIR}/usr/lib/libc.a +# LIBX11?=${DESTDIR}/usr/X11R7/lib/libX11.a +# etc.. + +.for _lib in \ + archive asn1 bluetooth bsdmalloc bz2 c c_pic cdk com_err compat \ + crypt crypto crypto_idea crypto_mdc2 crypto_rc5 \ + curses dbm des edit event \ + fetch form fl g2c gcc gnumalloc gssapi hdb heimntlm hx509 intl ipsec \ + kadm5clnt kadm5srv kafs krb5 kvm l lber ldap ldap_r \ + m magic menu objc ossaudio pam pcap pci pmc posix pthread pthread_dbg \ + puffs radius resolv rmt roken rpcsvc rt rump rumpuser skey sl ss \ + ssh ssl termcap usbhid util wrap y z bind9 dns lwres isccfg isccc isc \ + \ + 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 +.ifndef LIB${_lib:tu} +LIB${_lib:tu}= ${DESTDIR}/usr/lib/lib${_lib}.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 -lasn1 -lroken -lcom_err -lcrypto +PAM_STATIC_DPADD+= ${LIBKAFS} ${LIBKRB5} ${LIBHX509} ${LIBASN1} ${LIBROKEN} \ + ${LIBCOM_ERR} ${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 + +# These need + -> X transformations +.ifndef LIBSTDCXX +LIBSTDCXX= ${DESTDIR}/usr/lib/libstdc++.a +.MADE: ${LIBSTDCXX} +.endif + +.ifndef LIBSUPCXX +LIBSUPCXX= ${DESTDIR}/usr/lib/libsupc++.a +.MADE: ${LIBSUPCXX} +.endif -OBJS+= ${SRCS:R:S/$/.o/g} +.for _lib in \ + dps expat fntstubs fontcache fontconfig fontenc freetype FS \ + GL GLU ICE lbxutil SM X11 Xau Xaw Xdmcp Xext Xfont Xft \ + Xi Xinerama xkbfile Xmu Xmuu Xpm Xrandr Xrender Xss Xt \ + XTrap Xtst Xv Xxf86dga Xxf86misc Xxf86vm +.ifndef LIB${_lib:tu} +LIB${_lib:tu}= ${DESTDIR}${X11USRLIBDIR}/lib${_lib}.a +.MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded +.endif +.endfor + +.if defined(RESCUEDIR) +CPPFLAGS+= -DRESCUEDIR=\"${RESCUEDIR}\" +.endif + +_PROGLDOPTS= +.if ${SHLINKDIR} != "/usr/libexec" # XXX: change or remove if ld.so moves +.if ${OBJECT_FMT} == "ELF" +_PROGLDOPTS+= -Wl,-dynamic-linker=${_SHLINKER} +.endif +.endif +.if ${SHLIBDIR} != "/usr/lib" +_PROGLDOPTS+= -Wl,-rpath-link,${DESTDIR}${SHLIBDIR} \ + -R${SHLIBDIR} \ + -L${DESTDIR}${SHLIBDIR} +.elif ${SHLIBINSTALLDIR} != "/usr/lib" +_PROGLDOPTS+= -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR} \ + -L${DESTDIR}${SHLIBINSTALLDIR} +.endif +_PROGLDOPTS+= -Wl,-rpath-link,${DESTDIR}/usr/lib \ + -L${DESTDIR}/usr/lib + +__proginstall: .USE + ${_MKTARGET_INSTALL} + ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${STRIPFLAG} ${.ALLSRC} ${.TARGET} -${PROG}: ${OBJS} ${LIBC} ${DPADD} - ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD} +__progdebuginstall: .USE + ${_MKTARGET_INSTALL} + ${INSTALL_FILE} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \ + ${.ALLSRC} ${.TARGET} -.else defined(PROG) -SRCS= ${PROG}.c -${PROG}: ${SRCS} ${LIBC} ${DPADD} - ${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} ${LDADD} +# +# Backwards compatibility with Makefiles that assume that bsd.prog.mk +# can only build a single binary. +# -MKDEP= -p +_APPEND_MANS=yes +_APPEND_SRCS=yes +_CCLINKFLAGS= +.if defined(DESTDIR) +_CCLINKFLAGS+= -B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ .endif -.if !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \ - !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \ - !defined(MAN7) && !defined(MAN8) && !defined(NOMAN) -MAN1= ${PROG}.0 +.if defined(PROG_CXX) +PROG= ${PROG_CXX} +_CCLINK= ${CXX} ${_CCLINKFLAGS} .endif + +.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 -MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8} -_PROGSUBDIR: .USE -.if defined(SUBDIR) && !empty(SUBDIR) - @for entry in ${SUBDIR}; do \ - (echo "===> $$entry"; \ - if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \ - cd ${.CURDIR}/$${entry}.${MACHINE}; \ - else \ - cd ${.CURDIR}/$${entry}; \ - fi; \ - ${MAKE} ${.TARGET:S/realinstall/install/:S/.depend/depend/}); \ - done +# Turn the single-program PROG and PROG_CXX variables into their multi-word +# counterparts, PROGS and PROGS_CXX. +.if defined(PROG_CXX) && !defined(PROGS_CXX) +PROGS_CXX= ${PROG_CXX} +.elif defined(PROG) && !defined(PROGS) +PROGS= ${PROG} .endif -.MAIN: all -all: ${PROG} ${MANALL} _PROGSUBDIR -.if !target(clean) -clean: _PROGSUBDIR - rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES} + +# +# Per-program definitions and targets. +# + +# Definitions specific to C programs. +.for _P in ${PROGS} +SRCS.${_P}?= ${_P}.c +_CCLINK.${_P}= ${CC} ${_CCLINKFLAGS} +.endfor + +# 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" && ${OBJECT_FMT} == "ELF" && !commands(${_P}) +_PROGDEBUG.${_P}:= ${PROGNAME.${_P}}.debug .endif -.if !target(cleandir) -cleandir: _PROGSUBDIR - rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES} - rm -f .depend ${MANALL} +.if defined(PAXCTL_FLAGS) +PAXCTL_FLAGS.${_P}?= ${PAXCTL_FLAGS} .endif -# some of the rules involve .h sources, so remove them from mkdep line -.if !target(depend) -depend: .depend _PROGSUBDIR -.depend: ${SRCS} -.if defined(PROG) - mkdep ${MKDEP} ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c} +##### PROG specific flags. + +_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 !target(install) -.if !target(beforeinstall) -beforeinstall: +.if defined(OBJS.${_P}) && !empty(OBJS.${_P}) # { +.NOPATH: ${OBJS.${_P}} ${_P} ${_YPSRCS.${_P}} + +${OBJS.${_P}} ${LOBJS.${_P}}: ${DPSRCS} + +${_P}: .gdbinit ${LIBCRT0} ${OBJS.${_P}} ${LIBC} ${LIBCRTBEGIN} ${LIBCRTEND} ${DPADD} +.if !commands(${_P}) + ${_MKTARGET_LINK} + ${_CCLINK.${_P}} \ + ${DESTDIR:D-Wl,-nostdlib} \ + ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} \ + ${OBJS.${_P}} ${_LDADD.${_P}} \ + ${DESTDIR:D-L${_GCC_LIBGCCDIR}} \ + ${_PROGLDOPTS} +.if defined(PAXCTL_FLAGS.${_P}) + ${PAXCTL} ${PAXCTL_FLAGS.${_P}} ${.TARGET} .endif -.if !target(afterinstall) -afterinstall: +.if ${MKSTRIPIDENT} != "no" + ${OBJCOPY} -R .ident ${.TARGET} .endif +.endif # !commands(${_P}) -realinstall: _PROGSUBDIR -.if defined(PROG) - install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${PROG} ${DESTDIR}${BINDIR} +${_P}.ro: ${OBJS.${_P}} ${DPADD} + ${_MKTARGET_LINK} + ${CC} ${LDFLAGS} -nostdlib -Wl,-r,-dc -o ${.TARGET} ${OBJS.${_P}} + +.if defined(_PROGDEBUG.${_P}) +${_PROGDEBUG.${_P}}: ${_P} + ${_MKTARGET_CREATE} + ${OBJCOPY} --only-keep-debug ${_P} ${_PROGDEBUG.${_P}} + ${OBJCOPY} -R .gnu_debuglink --add-gnu-debuglink=${_PROGDEBUG.${_P}} ${_P} \ + || rm -f ${_PROGDEBUG.${_P}} .endif -.if defined(HIDEGAME) - (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG}; \ - chown games.bin ${PROG}) -.endif -.if defined(LINKS) && !empty(LINKS) - @set ${LINKS}; \ - while test $$# -ge 2; do \ - l=${DESTDIR}$$1; \ - shift; \ - 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 # defined(OBJS.${_P}) && !empty(OBJS.${_P}) # } + +.if !defined(MAN.${_P}) +MAN.${_P}= ${_P}.1 +.endif # !defined(MAN.${_P}) +.if !empty(_APPEND_MANS:M[Yy][Ee][Ss]) +MAN+= ${MAN.${_P}} .endif -.if !target(lint) -lint: ${SRCS} _PROGSUBDIR -.if defined(PROG) - @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1 +realall: ${_P} ${_PROGDEBUG.${_P}} + +cleanprog: cleanprog-${_P} +cleanprog-${_P}: + rm -f ${_P} ${_PROGDEBUG.${_P}} + +.if defined(OBJS.${_P}) && !empty(OBJS.${_P}) +cleanobjs: cleanobjs-${_P} +cleanobjs-${_P}: + rm -f ${OBJS.${_P}} ${LOBJS.${_P}} .endif + +_PROG_INSTALL+= proginstall-${_P} + +.if !target(proginstall-${_P}) # { +proginstall-${_P}:: ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}} \ + ${_PROGDEBUG.${_P}:D${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}} +.PRECIOUS: ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}} \ + ${_PROGDEBUG.${_P}:D${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}} + +.if ${MKUPDATE} == "no" +${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! ${_P} __proginstall +.if !defined(BUILD) && !make(all) && !make(${_P}) +${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! .MADE .endif +.if defined(_PROGDEBUG.${_P}) +${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! ${_PROGDEBUG.${_P}} __progdebuginstall +.if !defined(BUILD) && !make(all) && !make(${_P}) +${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! .MADE +.endif +.endif # define(_PROGDEBUG.${_P}) +.else # MKUPDATE != no +${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: ${_P} __proginstall +.if !defined(BUILD) && !make(all) && !make(${_P}) +${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: .MADE +.endif +.if defined(_PROGDEBUG.${_P}) +${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}: ${_PROGDEBUG.${_P}} __progdebuginstall +.if !defined(BUILD) && !make(all) && !make(${_P}) +${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}: .MADE +.endif +.endif # defined(_PROGDEBUG.${_P}) +.endif # MKUPDATE != no -.if !target(obj) -.if defined(NOOBJ) -obj: _PROGSUBDIR -.else -obj: _PROGSUBDIR - @cd ${.CURDIR}; rm -rf obj; \ - here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src/,,'`; \ - echo "$$here -> $$dest"; ln -s $$dest obj; \ - if test -d /usr/obj -a ! -d $$dest; then \ - mkdir -p $$dest; \ - else \ - true; \ - fi; +.endif # !target(proginstall-${_P}) # } + +lint: lint-${_P} +lint-${_P}: ${LOBJS.${_P}} +.if defined(LOBJS.${_P}) && !empty(LOBJS.${_P}) + ${LINT} ${LINTFLAGS} ${_LDFLAGS.${_P}:C/-L[ ]*/-L/Wg:M-L*} ${LOBJS.${_P}} ${_LDADD.${_P}} .endif + +.endfor # _P in ${PROGS} ${PROGS_CXX} # } + +.if defined(OBJS) && !empty(OBJS) && \ + (empty(PROGS) && empty(PROGS_CXX)) +cleanobjs: cleanobjs-plain +cleanobjs-plain: + rm -f ${OBJS} ${LOBJS} .endif -.if !target(tags) -tags: ${SRCS} _PROGSUBDIR -.if defined(PROG) - -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC} | \ - sed "s;\${.CURDIR}/;;" > tags +.if !target(proginstall) +proginstall:: ${_PROG_INSTALL} +.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} + +.for S in ${SCRIPTS:O:u} +.if ${MKUPDATE} == "no" +${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 +${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 +.endif +.endfor +.endif # } -.if !defined(NOMAN) +.if !target(scriptsinstall) +scriptsinstall:: +.endif +.PHONY: scriptsinstall + +##### Pull in related .mk logic +LINKSOWN?= ${BINOWN} +LINKSGRP?= ${BINGRP} +LINKSMODE?= ${BINMODE} .include +.include +.include +.include +.include +.include +.include + +cleanextra: .PHONY +.if defined(CLEANFILES) && !empty(CLEANFILES) + rm -f ${CLEANFILES} .endif + +${TARGETS}: # ensure existence + +.endif # HOSTPROG