0c3983b25a
. add bsd-style MLINKS to minix man set, restoring aliases (e.g. man add64 -> int64) . update daily cron script to run makewhatis and restore makewhatis in man Makefile (makedb), restores functionality of man -k . netbsd imports of man, mdocml, makewhatis, libutil, apropos . update man.conf with manpage locations, restoring man [-s] <section> . throws out some obsolete manpages
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
.include <bsd.own.mk>
|
|
|
|
.if defined(NBSD_LIBC) && (${NBSD_LIBC} != "no")
|
|
LIBC_DIR= nbsd_libc
|
|
LIBM_DIR= nbsd_libm
|
|
LIBCOMPAT_DIR= nbsd_libcompat_minix
|
|
LIBMINLIB_DIR= nbsd_libminlib
|
|
LIBASYN_DIR= nbsd_libasyn
|
|
.endif
|
|
|
|
LIBC_DIR?= libc
|
|
LIBM_DIR?= libm
|
|
LIBCOMPAT_DIR?=
|
|
LIBMINLIB_DIR?=
|
|
LIBASYN_DIR?=
|
|
|
|
SUBDIR= csu ${LIBCOMPAT_DIR} ${LIBC_DIR} libdriver libnetdriver \
|
|
libedit ${LIBM_DIR} libsys libtimers libminixutil libbz2 libl libhgfs \
|
|
libz libfetch libarchive libvtreefs libaudiodriver libmthread \
|
|
libexec libdevman libusb ${LIBMINLIB_DIR} ${LIBASYN_DIR} \
|
|
libddekit libminixfs
|
|
|
|
.if defined(NBSD_LIBC) && (${NBSD_LIBC} != "no")
|
|
SUBDIR+= libelf libminc libcrypt libterminfo libcurses libvassert libutil
|
|
.endif
|
|
|
|
.if ${COMPILER_TYPE} == "ack"
|
|
SUBDIR+= ack/libd ack/libe ack/libfp ack/liby
|
|
.endif
|
|
|
|
.if ${OBJECT_FMT} == "a.out"
|
|
SUBDIR+= libend
|
|
.endif
|
|
.include <bsd.subdir.mk>
|
|
|
|
build_ack:
|
|
sh ack_build.sh obj dependall install
|
|
|
|
build_elf:
|
|
sh elf_build.sh obj dependall install
|
|
|
|
clean_all:
|
|
sh ack_build.sh clean
|
|
sh elf_build.sh clean
|
|
|
|
cleandepend_all:
|
|
sh ack_build.sh cleandepend
|
|
sh elf_build.sh cleandepend
|