xref: /illumos-gate/usr/src/man/Makefile (revision b6805bf78d2bbbeeaea8909a05623587b42d58b3)
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 2013 Nexenta Systems, Inc.  All rights reserved.
15#
16
17SUBDIRS=	man1		\
18		man1b		\
19		man1c		\
20		man1has		\
21		man1m		\
22		man2		\
23		man3		\
24		man3bsm		\
25		man3c		\
26		man3c_db	\
27		man3cfgadm	\
28		man3commputil	\
29		man3contract	\
30		man3cpc		\
31		man3curses	\
32		man3dat		\
33		man3devid	\
34		man3devinfo	\
35		man3dlpi	\
36		man3dns_sd	\
37		man3elf		\
38		man3exacct	\
39		man3ext		\
40		man3fcoe	\
41		man3fstyp	\
42		man3gen		\
43		man3gss		\
44		man3head	\
45		man3iscsit	\
46		man3kstat	\
47		man3kvm		\
48		man3ldap	\
49		man3lgrp	\
50		man3lib		\
51		man3libucb	\
52		man3mail	\
53		man3malloc	\
54		man3mp		\
55		man3mpapi	\
56		man3nsl		\
57		man3nvpair	\
58		man3pam		\
59		man3papi	\
60		man3perl	\
61		man3picl	\
62		man3picltree	\
63		man3pool	\
64		man3proc	\
65		man3project	\
66		man3resolv	\
67		man3rpc		\
68		man3rsm		\
69		man3sasl	\
70		man3scf		\
71		man3sec		\
72		man3secdb	\
73		man3sip		\
74		man3slp		\
75		man3socket	\
76		man3stmf	\
77		man3sysevent	\
78		man3tecla	\
79		man3tnf		\
80		man3tsol	\
81		man3ucb		\
82		man3uuid	\
83		man3volmgt	\
84		man3xcurses	\
85		man3xnet	\
86		man4		\
87		man5		\
88		man7		\
89		man7d		\
90		man7fs		\
91		man7i		\
92		man7ipp		\
93		man7m		\
94		man7p		\
95		man9		\
96		man9e		\
97		man9f		\
98		man9p		\
99		man9s
100
101.PARALLEL: $(SUBDIRS)
102
103all		:= TARGET = all
104clean		:= TARGET = clean
105clobber		:= TARGET = clobber
106install		:= TARGET = install
107
108all clean clobber install: $(SUBDIRS)
109
110$(SUBDIRS):	FRC
111	@cd $@; pwd; $(MAKE) $(TARGET)
112
113FRC:
114