9e1dc7bec3
Create a man page per loader. Loader(8) will have information common to all of them, while loader_${INTERP}(8) will have information relevant to that specific loader. Rewrite loader(8) to give an overview and point to the appropriate man page. Rewrite each of the loader_${INTER}(8) man pages to contain only the relevant information to that loader. Put all the common commands, environment variables, etc in loader_simp(8) and refernce that from the loader_lua or loader_4th man pages. The loader_lua(8) could use more details about the Lua integration. Additional organization may be benefitial. Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D31340
15 lines
237 B
Makefile
15 lines
237 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
M.${MK_EFI}+= boot1.efi.8
|
|
M.yes+= loader.8
|
|
M.${MK_EFI}+= loader.efi.8
|
|
M.${MK_FORTH}+= loader_4th.8
|
|
M.${MK_LOADER_LUA}+= loader_lua.8
|
|
M.yes+= loader_simp.8
|
|
|
|
MAN=${M.yes}
|
|
|
|
.include <bsd.prog.mk>
|