bsd.prog.mk (79f5991559cec69c0ac3cfbbaa3ef6c1b64afaf4) | bsd.prog.mk (697b271da935866850692f7e0cb76434c4e26b13) |
---|---|
1# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 2# $FreeBSD$ 3 4.include <bsd.init.mk> 5.include <bsd.compiler.mk> 6.include <bsd.linker.mk> 7 8.SUFFIXES: .out .o .bc .c .cc .cpp .cxx .C .m .y .l .ll .ln .s .S .asm --- 256 unchanged lines hidden (view full) --- 265realinstall: _proginstall 266.ORDER: beforeinstall _proginstall 267_proginstall: 268.if defined(PROG) 269 ${INSTALL} ${TAG_ARGS} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 270 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${BINDIR}/${PROGNAME} 271.if ${MK_DEBUG_FILES} != "no" 272.if defined(DEBUGMKDIR) | 1# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 2# $FreeBSD$ 3 4.include <bsd.init.mk> 5.include <bsd.compiler.mk> 6.include <bsd.linker.mk> 7 8.SUFFIXES: .out .o .bc .c .cc .cpp .cxx .C .m .y .l .ll .ln .s .S .asm --- 256 unchanged lines hidden (view full) --- 265realinstall: _proginstall 266.ORDER: beforeinstall _proginstall 267_proginstall: 268.if defined(PROG) 269 ${INSTALL} ${TAG_ARGS} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 270 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${BINDIR}/${PROGNAME} 271.if ${MK_DEBUG_FILES} != "no" 272.if defined(DEBUGMKDIR) |
273 ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},debug} -d ${DESTDIR}${DEBUGFILEDIR}/ | 273 ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},dbg} -d ${DESTDIR}${DEBUGFILEDIR}/ |
274.endif | 274.endif |
275 ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},debug} -o ${BINOWN} -g ${BINGRP} -m ${DEBUGMODE} \ | 275 ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},dbg} -o ${BINOWN} -g ${BINGRP} -m ${DEBUGMODE} \ |
276 ${PROGNAME}.debug ${DESTDIR}${DEBUGFILEDIR}/${PROGNAME}.debug 277.endif 278.endif 279.endif # !target(realinstall) 280 281.if defined(SCRIPTS) && !empty(SCRIPTS) 282realinstall: _scriptsinstall 283.ORDER: beforeinstall _scriptsinstall --- 68 unchanged lines hidden --- | 276 ${PROGNAME}.debug ${DESTDIR}${DEBUGFILEDIR}/${PROGNAME}.debug 277.endif 278.endif 279.endif # !target(realinstall) 280 281.if defined(SCRIPTS) && !empty(SCRIPTS) 282realinstall: _scriptsinstall 283.ORDER: beforeinstall _scriptsinstall --- 68 unchanged lines hidden --- |