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