aboutsummaryrefslogtreecommitdiff
path: root/share/mk/bsd.man.mk
Commit message (Collapse)AuthorAgeFilesLines
...
* Do not clobber COPY, it may be set differently in /etc/make.conf.Ruslan Ermilov2001-05-301-2/+0
| | | | | | | | This is not the problem for NOMANCOMPRESS, as install(1) does not delete the originals anymore (-c is the default now). Notes: svn path=/head/; revision=77470
* Add missing -mtty-char for MANBUILDCAT.Ruslan Ermilov2001-04-181-1/+1
| | | | Notes: svn path=/head/; revision=75655
* - Removed `n' from the list of manpage sections.Ruslan Ermilov2001-03-281-5/+5
| | | | | | | | - Only support the old syntax for manpage declarations (MAN1...MAN9) if no MAN is defined. Notes: svn path=/head/; revision=74939
* Removed _MANPAGES, MANDEPEND and MANSRC.Ruslan Ermilov2001-03-261-44/+41
| | | | | | | | | | Added MAN which will eventually replace MAN[0-9] and MAN1aout. For now, the old syntax is still supported. Reviewed by: bde Notes: svn path=/head/; revision=74806
* Make ``groff -man'' work again for both man(7) and mdoc(7) manpages.Ruslan Ermilov2001-02-231-1/+1
| | | | | | | | | The new Groff release will support this feature. Requested by: peter Notes: svn path=/head/; revision=72942
* Install the stock (as supplied by groff(1) distribution) tmac.anRuslan Ermilov2000-12-061-1/+1
| | | | | | | | and tmac.andoc files. The man(1), catman(1) and bsd.man.mk have been modified to call groff(1) with -mandoc argument. Notes: svn path=/head/; revision=69679
* groff does not use MANDEPEND anymore.Ruslan Ermilov2000-12-051-1/+1
| | | | Notes: svn path=/head/; revision=69634
* Typo in comments explaining what MAN_FILTER is.Tim Vanderhoek2000-05-211-1/+1
| | | | Notes: svn path=/head/; revision=60749
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Backed out rev.1.28. It was bogus because bsd.man.mk is only usedBruce Evans1998-09-091-8/+1
| | | | | | | | (and only usable) by other .mk files that have their own multiple inclusion protection. Notes: svn path=/head/; revision=38987
* Add a man section 1aout for the legacy man files to avoid them beingJohn Birrell1998-09-071-2/+2
| | | | | | | installed over the ones from binutils. Notes: svn path=/head/; revision=38898
* Make ../Makefile.inc handling more consistant to prevent multiple includesPeter Wemm1998-08-081-1/+8
| | | | | | | | | when certain .mk files include other .mk files. This will remove the need for multiple include protection in some other makefiles around the tree (and helps some elf conditionals). Notes: svn path=/head/; revision=38183
* Don't include ../Makefile.inc here. bsd.man.mk is always includedBruce Evans1998-04-271-6/+1
| | | | | | | | in another .mk file which has already included ../Makefile.inc, so including ../Makefike.inc again mainly messed up `+=' definitions. Notes: svn path=/head/; revision=35478
* Remove the comments hat just list the nested includes.Wolfram Schneider1997-11-091-3/+2
| | | | | | | | | The lists don't provide significantly more information than grep '\.include', and grep gives lists that are actually correct. Submitted by: Bruce Notes: svn path=/head/; revision=31074
* Don't use !empty() on the potentially unset variable MANBUILDCAT. UsingBruce Evans1997-07-251-8/+8
| | | | | | | it broke "everything" unless MANBUILDCAT was set. Notes: svn path=/head/; revision=27673
* Removed a stray `.if' that broke everything.Bruce Evans1997-07-251-2/+1
| | | | Notes: svn path=/head/; revision=27672
* Allow optional building of preformatted manual pages.Paul Traina1997-07-241-2/+80
| | | | | | | Reviewed by: wosch Notes: svn path=/head/; revision=27659
* Updated comment about MANDEPEND (it was misplaced in bsd.prog.mk).Bruce Evans1997-04-191-1/+3
| | | | Notes: svn path=/head/; revision=25027
* Add new variables COMPRESS_CMD and COMPRESS_EXT.Wolfram Schneider1997-03-081-12/+12
| | | | | | | | | | | | | bsd.doc.mk: rename GZIPCMD to DCOMPRESS_CMD, add DCOMPRESS_EXT bsd.info.mk: rename GZIPCMD to ICOMPRESS_CMD, add ICOMPRESS_EXT set INFOTMPL to ${INFODIR}/dir-tmpl bsd.man.mk rename ZEXTENSION to MCOMPRESS_EXT, MCOMPRESS to MCOMPRESS_CMD Notes: svn path=/head/; revision=23546
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22988
* Remove unsupported man section 3fWolfram Schneider1997-02-161-1/+1
| | | | Notes: svn path=/head/; revision=22789
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* add new variable NOMLINKSWolfram Schneider1996-12-261-2/+4
| | | | | | | NOMLINKS If you do not want install manual page links. [not set] Notes: svn path=/head/; revision=20935
* Workaround to (hopefully) fix the NOMANCOMPRESS case of the MANFILTER-usingPeter Wemm1996-09-161-3/+18
| | | | | | | | | | | | | | | | man pages (eg: named/bind/etc). In order to get (say) dig.1 to pass through the filter and produce a new dig.1 for installing, I used an intermediate file at build time, similar to the way the .gz man pages are built. I've not extensively tested this, but it seems to work for the known cases where it was failing, and it only affects the NOMANCOMPRESS case which was already broken. Pointed out by: "Ph. Charnier" <charnier@xp11.frmug.org>, PR#1612 Notes: svn path=/head/; revision=18314
* Use MANFILTER everywhere instead of a couple of MANFILT typos..Peter Wemm1996-08-261-4/+4
| | | | Notes: svn path=/head/; revision=17831
* Add a hook ``MANFILTER''. This optionally specifies a command toPeter Wemm1996-08-111-1/+22
| | | | | | | | | | | pipe the man page source through before compressing or installing. This can be used to do do (eg) sed substitution on man pages from 3rd party packages (in particular, ncurses and bind-4.9.4) This should not affect anything already in the source tree. Notes: svn path=/head/; revision=17511
* Add man-page section 'n' and LIBTCL macro.Poul-Henning Kamp1996-06-221-2/+2
| | | | Notes: svn path=/head/; revision=16581
* Add some comments for variables and targets.Wolfram Schneider1996-05-251-1/+46
| | | | Notes: svn path=/head/; revision=15903
* speedup MLINKSWolfram Schneider1996-05-251-14/+12
| | | | Notes: svn path=/head/; revision=15902
* Add variable ``_MANPAGES'' This will be replace theWolfram Schneider1996-04-091-1/+3
| | | | | | | | .if !defined(MAN1) && !defined(MAN2) ... orgy in bsd.prog.mk and bsd.kmod.mk Notes: svn path=/head/; revision=15168
* delete MANGRP?=, MANOWN?=, MANMODE?=, MANDIR?=Wolfram Schneider1996-03-241-6/+1
| | | | Notes: svn path=/head/; revision=14778
* Added `9' to ${SECTIONS}.Bruce Evans1995-12-141-2/+2
| | | | Notes: svn path=/head/; revision=12828
* Fix maninstall target for the NOMANCOMPRESS case. The previous revisionBruce Evans1995-10-211-6/+13
| | | | | | | | | | | | | | | | failed when there was an obj directory. Use .PATH.n for installing too so that make can find the source files. This allows the source files to be in several directories (the old method using cd only works well for a single directory). The dependencies are on the source files even for the compressed case, although it would be more flexible to depend on the files being installed, so that `make install' doesn't attempt to build things Force COPY to -c for the NOMANCOMPRESS case. Then the files to be installed are always sources, so they must not be moved. Notes: svn path=/head/; revision=11623
* Fix the support for MANSRC (it was broken by the compression changes):Bruce Evans1995-10-141-54/+33
| | | | | | | | | | | | | | use .PATH.n to get the dependencies right and to avoid some shell tests. Remove bogus dependency of individual compressed man pages on MANDEPEND. Use for loops to avoid duplicated code. Combine some rm steps in installation of links. Linking still takes too long. Notes: svn path=/head/; revision=11468
* Compress manual pages (if desired) in the obj directory ratherGarrett Wollman1995-10-021-57/+53
| | | | | | | | | than in the installation destination. Should make release-building substantially faster. The msun Makefile changes simple adapt to the new scheme. Notes: svn path=/head/; revision=11136
* Move INSTALL?=install line duplicated into each .mk to sys.mkAndrey A. Chernov1994-12-281-2/+1
| | | | | | | instead Notes: svn path=/head/; revision=5257
* Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet.Bruce Evans1994-08-281-3/+3
| | | | Notes: svn path=/head/; revision=2353
* Spplat our 1.1.5 `mk' ifiles over the top of the 4.4 ones. So farGarrett Wollman1994-08-041-20/+64
| | | | | | | as I can tell, this is ts the right thing to do. Notes: svn path=/head/; revision=1844
* BSD 4.4 Lite Share SourcesRodney W. Grimes1994-05-301-0/+58
Notes: svn path=/head/; revision=1638