-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkify.pl
282 lines (251 loc) · 5.98 KB
/
mkify.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#!%PERL%
#
# Copyright (c) 2001-2020 Julien Nadeau Carriere <[email protected]>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
@Scripts = qw(
config.guess
mkdep
mkdep-cxx
mkconcurrent.pl
manlinks.pl
gen-bundle.pl
gen-declspecs.pl
gen-dotdepend.pl
gen-includes.pl
gen-includelinks.pl
gen-revision.sh
gen-wwwdepend.pl);
@LibtoolFiles = qw(
Makefile
Makefile.in
aclocal.m4
config.guess
config.sub
configure
configure.in
install-sh
ltmain.sh
README);
@LibtoolFilesM4 = qw(
libtool.m4
ltoptions.m4
ltsugar.m4
ltversion.m4
lt~obsolete.m4);
$DATADIR = '%DATADIR%';
%copied = ();
#
# Install file as-is.
#
sub InstallASIS
{
my $file = shift;
my $dst = shift;
if (!defined($dst)) { $dst = 'mk/'.$file; }
print STDERR " $file";
unless (open(SRC, $DATADIR.'/'.$file)) {
print STDERR "Reading $DATADIR/$file: $!\n";
return (0);
}
unless (open(DST, ">$dst")) {
print STDERR "Writing to $dst: $!\n";
return (0);
}
print DST <SRC>;
close(DST);
close(SRC);
return (1);
}
#
# Copy files needed by <build.www.mk>.
#
sub CopyDepsWWW
{
if (!-e 'xsl') {
unless (mkdir('xsl', 0755)) {
print STDERR "xsl/: $!\n";
return (0);
}
}
InstallASIS('ml.xsl', 'xsl/ml.xsl') || return (0);
}
#
# Copy files needed by <build.lib.mk>.
#
sub CopyDepsLIB
{
if (! -e 'mk/libtool' && !mkdir('mk/libtool', 0755)) {
print STDERR "mk/libtool/: $!\n";
return (0);
}
if (! -e 'mk/libtool/m4' && !mkdir('mk/libtool/m4', 0755)) {
print STDERR "mk/libtool/m4/: $!\n";
return (0);
}
foreach my $f (@LibtoolFiles) {
InstallASIS('libtool/'.$f) || return (0);
}
foreach my $f (@LibtoolFilesM4) {
InstallASIS('libtool/m4/'.$f) || return (0);
}
chmod(0755, 'mk/libtool/config.sub') ||
print STDERR "mk/libtool/config.sub: $!\n";
return (1);
}
#
# Install a .mk file. Scan the file for include dependency and install
# these as well.
#
sub InstallMK ($)
{
my ($file) = @_;
my $dst = 'mk/'.$file;
my $path = $DATADIR.'/'.$file;
my @deps = ();
print STDERR " $file";
unless (open(SRC, $DATADIR.'/'.$file)) {
print STDERR "$DATADIR/$file: $!\n";
return 0;
}
chop(@src = <SRC>);
close(SRC);
unless (open(DEST, ">$dst")) {
print STDERR "dst $dst: $!\n";
close(SRC);
return 0;
}
foreach $_ (@src) {
print DEST $_, "\n";
if (/^include\s*.+\/mk\/(.+)\s*$/) {
if (!exists($copied{$1})) {
push @deps, $1;
$copied{$1}++;
}
}
}
close(DEST);
foreach my $dep (@deps) {
InstallMK($dep);
}
if ($file eq 'build.www.mk') {
CopyDepsWWW() || return (0);
}
if ($file eq 'build.lib.mk') {
CopyDepsLIB() || return (0);
}
$copied{$file}++;
return 1;
}
if (!-d 'mk' && @ARGV < 1) {
print STDERR "Usage: $0 [module-name ...]\n";
exit(1);
}
if (!-e 'mk' || @ARGV > 0) {
if (! -e 'mk') {
unless (mkdir('mk', 0755)) {
print STDERR "mk/: $!\n";
exit (1);
}
}
print STDERR "Installing in mk:";
foreach my $type (@ARGV) {
InstallMK("build.${type}.mk");
}
print STDERR ".\n";
} else {
unless (opendir(MKDIR, 'mk')) {
print "mk/: $!\n";
exit(1);
}
print STDERR "Updating mk:";
foreach my $f (readdir(MKDIR)) {
if ($f =~ /^\./ || -d 'mk/'.$f) { next; }
if ($f =~ /^(build\.[\w]+\.mk)$/) {
InstallMK($f);
} elsif (-e $DATADIR.'/'.$f) {
InstallASIS($f);
}
}
print STDERR ".\n";
closedir(MKDIR);
}
print STDERR "Installing scripts:";
foreach my $script (@Scripts) {
InstallASIS($script);
}
print STDERR ".\n";
if (!-e 'Makefile' &&
open(MAKE, '>Makefile')) {
if ($type eq 'prog') {
print MAKE << 'EOF';
# Sample Makefile for a program.
# Path to parent directory of "mk".
TOP=.
# Executable output name (exact meaning is platform-dependent)
PROG=foo
#
# Source files. See the <build.prog.mk> source for a list of all
# possible source types allowed.
#
SRCS=foo.c bar.cc baz.m
include ${TOP}/Makefile.config
include ${TOP}/mk/build.prog.mk
EOF
} elsif ($type eq 'lib') {
print MAKE << 'EOF';
# Sample Makefile for a library.
# Path to parent directory of "mk".
TOP=.
# Library output name (exact meaning is platform-dependent)
LIB= foo
#
# Source files. See the <build.lib.mk> source for a list of all
# possible source types allowed.
#
SRCS= foo.c bar.cc baz.m
include ${TOP}/Makefile.config
include ${TOP}/mk/build.lib.mk
EOF
} elsif ($type eq 'www') {
print MAKE << 'EOF';
# Sample Makefile for a webpage or website.
# Path to parent directory of "mk".
TOP=.
#
# Target HTML files. The actual source files must be named foo.htm and
# bar.htm, and will be processed into a number of language and character
# set variants (ie. foo.html.en). Standard Apache-compatible variant maps
# will be generated as well.
#
HTML= foo.html bar.html
include ${TOP}/mk/build.www.mk
EOF
}
close(MAKE);
}
if (!-e 'Makefile.config' &&
open(MAKE, '>Makefile.config')) {
print MAKE "# File is auto-generated, do not edit\n";
close(MAKE);
}