xref: /illumos-gate/usr/src/man/Makefile (revision 2a295025ab352ac2f6469a947d5b5e2f9379f943)
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		man1s		\
23		man2		\
24		man3		\
25		man3avl		\
26		man3bsm		\
27		man3c		\
28		man3c_db	\
29		man3cfgadm	\
30		man3commputil	\
31		man3contract	\
32		man3cpc		\
33		man3curses	\
34		man3dat		\
35		man3devid	\
36		man3devinfo	\
37		man3dlpi	\
38		man3dns_sd	\
39		man3elf		\
40		man3exacct	\
41		man3ext		\
42		man3fcoe	\
43		man3fstyp	\
44		man3gen		\
45		man3gss		\
46		man3head	\
47		man3iscsit	\
48		man3kstat	\
49		man3kvm		\
50		man3ldap	\
51		man3lgrp	\
52		man3lib		\
53		man3m		\
54		man3mail	\
55		man3malloc	\
56		man3mp		\
57		man3mpapi	\
58		man3mvec	\
59		man3nsl		\
60		man3nvpair	\
61		man3pam		\
62		man3ofmt	\
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		man3tsol	\
84		man3utempter	\
85		man3uuid	\
86		man3volmgt	\
87		man3xcurses	\
88		man3xnet	\
89		man4		\
90		man4d		\
91		man4fs		\
92		man4i		\
93		man4ipp		\
94		man4m		\
95		man4p		\
96		man5		\
97		man7		\
98		man8		\
99		man9		\
100		man9e		\
101		man9f		\
102		man9p		\
103		man9s
104
105.PARALLEL: $(SUBDIRS)
106
107all		:= TARGET = all
108clean		:= TARGET = clean
109clobber		:= TARGET = clobber
110install		:= TARGET = install
111check		:= TARGET = check
112
113all check clean clobber install: $(SUBDIRS)
114
115$(SUBDIRS):	FRC
116	@cd $@; pwd; $(MAKE) $(TARGET)
117
118FRC:
119