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
17 SUBDIRS= 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 \
85 man5 \
86 man7 \
87 man7d \
88 man7fs \
89 man7i \
90 man7ipp \
91 man7m \
92 man7p \
93 man9 \
94 man9e \
95 man9f \
96 man9p \
97 man9s
98
99 .PARALLEL: $(SUBDIRS)
100
101 all := TARGET = all
102 clean := TARGET = clean
103 clobber := TARGET = clobber
104 install := TARGET = install
105
106 all clean clobber install: $(SUBDIRS)
107
108 $(SUBDIRS): FRC
109 @cd $@; pwd; $(MAKE) $(TARGET)
110
111 FRC:
|
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 2014 Nexenta Systems, Inc. All rights reserved.
15 #
16
17 SUBDIRS= 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 \
85 man5 \
86 man7 \
87 man7d \
88 man7fs \
89 man7i \
90 man7ipp \
91 man7m \
92 man7p \
93 man9 \
94 man9e \
95 man9f \
96 man9p \
97 man9s
98
99 .PARALLEL: $(SUBDIRS)
100
101 all := TARGET = all
102 clean := TARGET = clean
103 clobber := TARGET = clobber
104 install := TARGET = install
105 check := TARGET = check
106
107 all check clean clobber install: $(SUBDIRS)
108
109 $(SUBDIRS): FRC
110 @cd $@; pwd; $(MAKE) $(TARGET)
111
112 FRC:
|