xref: /illumos-gate/usr/src/man/Makefile (revision fe4627ef755b7c263f91a0e6f07cdca5d7083501)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source.  A copy of the CDDL is also available via the Internet
9# at http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright 2011, Richard Lowe
14# Copyright (c) 2012, Igor Kozhukhov <ikozhukhov@gmail.com>
15# Copyright 2014 Nexenta Systems, Inc.  All rights reserved.
16#
17
18SUBDIRS=	man1		\
19		man1b		\
20		man1c		\
21		man1has		\
22		man1m		\
23		man1s		\
24		man2		\
25		man3		\
26		man3avl		\
27		man3bsm		\
28		man3c		\
29		man3c_db	\
30		man3cfgadm	\
31		man3commputil	\
32		man3contract	\
33		man3cpc		\
34		man3curses	\
35		man3dat		\
36		man3devid	\
37		man3devinfo	\
38		man3dlpi	\
39		man3dns_sd	\
40		man3elf		\
41		man3exacct	\
42		man3ext		\
43		man3fcoe	\
44		man3fstyp	\
45		man3gen		\
46		man3gss		\
47		man3head	\
48		man3iscsit	\
49		man3kstat	\
50		man3kvm		\
51		man3ldap	\
52		man3lgrp	\
53		man3lib		\
54		man3m		\
55		man3mail	\
56		man3malloc	\
57		man3mp		\
58		man3mpapi	\
59		man3mvec	\
60		man3nsl		\
61		man3nvpair	\
62		man3pam		\
63		man3papi	\
64		man3perl	\
65		man3picl	\
66		man3picltree	\
67		man3pool	\
68		man3proc	\
69		man3project	\
70		man3resolv	\
71		man3rpc		\
72		man3rsm		\
73		man3sasl	\
74		man3scf		\
75		man3sec		\
76		man3secdb	\
77		man3sip		\
78		man3slp		\
79		man3socket	\
80		man3stmf	\
81		man3sysevent	\
82		man3tecla	\
83		man3tnf		\
84		man3tsol	\
85		man3uuid	\
86		man3volmgt	\
87		man3xcurses	\
88		man3xnet	\
89		man4		\
90		man5		\
91		man7		\
92		man7d		\
93		man7fs		\
94		man7i		\
95		man7ipp		\
96		man7m		\
97		man7p		\
98		man9		\
99		man9e		\
100		man9f		\
101		man9p		\
102		man9s
103
104.PARALLEL: $(SUBDIRS)
105
106all		:= TARGET = all
107clean		:= TARGET = clean
108clobber		:= TARGET = clobber
109install		:= TARGET = install
110check		:= TARGET = check
111
112all check clean clobber install: $(SUBDIRS)
113
114$(SUBDIRS):	FRC
115	@cd $@; pwd; $(MAKE) $(TARGET)
116
117FRC:
118