| version 1.178, 2002/06/20 08:21:59 |
version 1.179, 2002/06/26 00:10:16 |
| Line 94 regression-tests: |
|
| Line 94 regression-tests: |
|
| @(cd ${.CURDIR}/regress && ${MAKE} regress) |
@(cd ${.CURDIR}/regress && ${MAKE} regress) |
| .endif |
.endif |
| |
|
| |
.if defined(UNPRIVED) |
| |
NOPOSTINSTALL= # defined |
| |
.endif |
| |
|
| afterinstall: |
afterinstall: |
| .if ${MKMAN} != "no" |
.if ${MKMAN} != "no" |
| (cd ${.CURDIR}/share/man && ${MAKE} makedb) |
(cd ${.CURDIR}/share/man && ${MAKE} makedb) |
|
|
| .if defined(UNPRIVED) && (${MKINFO} != "no") |
.if defined(UNPRIVED) && (${MKINFO} != "no") |
| (cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta) |
(cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta) |
| .endif |
.endif |
| .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/" |
.if !defined(NOPOSTINSTALL) |
| (cd ${.CURDIR} && ${MAKE} postinstall-check) |
(${MAKE} postinstall-check) |
| .endif |
.endif |
| |
|
| postinstall-check: |
postinstall-check: |
|
|
| # Build a full distribution, but not a release (i.e. no sets into |
# Build a full distribution, but not a release (i.e. no sets into |
| # ${RELEASEDIR}). |
# ${RELEASEDIR}). |
| |
|
| distribution: build |
distribution: |
| |
(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build) |
| (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution) |
(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution) |
| |
|
| # Build a release or snapshot (implies "make build"). |
# Build a release or snapshot (implies "make build"). |
| |
|
| release snapshot: build |
release snapshot: |
| |
(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build) |
| (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release) |
(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release) |
| |
|
| # Special components of the "make build" process. |
# Special components of the "make build" process. |