b25a566d47
Ensure all standard targets honor SUBDIR. Now `make obj' descends into SUBDIRs even if NOOBJ is set (some descendants may still need an object directory, but we do not have such precedents). Now `make install' in non-bsd.subdir.mk makefiles runs `afterinstall' target _after_ `install' in SUBDIRs, like we do in bsd.subdir.mk. Nothing depended on the wrong order anyway. Fixed `distribute' targets (except for the bsd.subdir.mk version) so that they do not depend on _SUBDIR; `distribute' calls `install' which already depends on _SUBDIR. De-standardize `maninstall', otherwise manpages would be installed twice. (To be revised later.)
25 lines
578 B
Makefile
25 lines
578 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
MAN= adding_user.8 \
|
|
crash.8 \
|
|
diskless.8 \
|
|
intro.8 \
|
|
picobsd.8 \
|
|
rc.8 \
|
|
rc.sendmail.8 \
|
|
sticky.8 \
|
|
yp.8
|
|
|
|
MLINKS= rc.8 rc.early.8 rc.8 rc.serial.8 rc.8 rc.pccard.8 rc.8 rc.network.8
|
|
MLINKS+=rc.8 rc.firewall.8 rc.8 rc.atm.8 rc.8 rc.local.8 rc.8 rc.shutdown.8
|
|
MLINKS+=yp.8 YP.8 yp.8 NIS.8 yp.8 nis.8
|
|
|
|
# XXX NOT IMPORTED: man8.hp300 man8.tahoe man8.vax
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "alpha"
|
|
MLINKS+=rc.8 ${MACHINE_ARCH}/rc.${MACHINE_ARCH}.8
|
|
SUBDIR= man8.${MACHINE_ARCH}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|