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