b7b7574d3b
Move all the reference manuals to subdirs of /usr/share/doc/reference. We have subdirs ref1-ref9, corresponding to man page sections 1-9. Everything that's the reference manual for a program (sections 1, 6, 8), C interface (sections 2, 3), driver or file system (section 4), format or configuration (section 5), or kernel internal interface (section 9) belongs in here. Section 7 is a little less clear: some things that might go in section 7 if they were a man page aren't really reference manuals. So I'm only putting things in reference section 7 that are (to me) clearly reference material, rather than e.g. tutorials, guides, FAQs, etc. This obviously leaves some room for debate, especially without first editing the docs with this distinction in mind, but if people hate what I've done things can always be moved again. Note also that while roff macro man pages traditionally go in section 7, I have put all the roff documentation (macros, tools, etc.) in one place in reference/ref1/roff. This will make it easier to find and also easier to edit it into some kind of coherent form.
19 lines
563 B
Makefile
19 lines
563 B
Makefile
# $NetBSD: Makefile,v 1.8 2014/07/05 19:22:43 dholland Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 8/14/93
|
|
|
|
SECTION=reference/ref1
|
|
ARTICLE=gprof
|
|
SRCS= header.me abstract.me intro.me profiling.me gathering.me \
|
|
postp.me present.me refs.me
|
|
DEPSRCS=postp1.pic postp2.pic postp3.pic pres1.pic pres2.pic
|
|
MACROS= -me
|
|
ROFF_PIC=yes
|
|
ROFF_EQN=yes
|
|
ROFF_TBL=yes
|
|
EXTRAHTMLFILES=\
|
|
gprof-1.png gprof-2.png gprof-3.png gprof-4.png gprof-5.png \
|
|
gprof-6.png gprof-7.png gprof-8.png gprof-9.png gprof-10.png \
|
|
gprof-11.png gprof-12.png gprof-13.png gprof-14.png
|
|
|
|
.include <bsd.doc.mk>
|