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