-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMakefile.in
584 lines (530 loc) · 27.6 KB
/
Makefile.in
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
# Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved.
# Portions of this code were written by Stephen White, aka ghond.
# Use and copying of this software and preparation of derivative works based
# upon this software are permitted. Any distribution of this software or
# derivative works must comply with all applicable United States export
# control laws. This software is made available AS IS, and Xerox Corporation
# makes no warranty about the software, its performance or its conformity to
# any specification. Any person obtaining a copy of this software is requested
# to send their name and post office or electronic mail address to:
# Pavel Curtis
# Xerox PARC
# 3333 Coyote Hill Rd.
# Palo Alto, CA 94304
CC = @CC@
CXX = @CXX@
CCAS = @CCAS@
LIBRARIES = @LIBS@
YACC = @YACC@
CFLAGS = -g -O -Wall
CXXFLAGS = -g -O -Wall
# If you're using GCC, you may prefer:
# CFLAGS = -O2 -finline-functions
#
# If you're not using GCC, and your compiler doesn't understand the
# inline keyword, use the following. (This will be fixed in autoconf2
# upgrade).
# CFLAGS = -O2 -Dinline=
MI_OPTS = --fill-column 79 --no-split
DOCS = ProgrammersManual.txt ProgrammersManual.html ProgrammersManual.info \
ProgrammersManual.dvi ProgrammersManual.pdf ProgrammersManual.ps
YFLAGS = -d
ASFLAGS = -c
COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
CSRCS = http_parser.c regexpr.c yajl/yajl.c yajl/yajl_alloc.c \
yajl/yajl_buf.c yajl/yajl_encode.c yajl/yajl_gen.c \
yajl/yajl_lex.c yajl/yajl_parser.c yajl/yajl_version.c \
nettle/hmac.c nettle/hmac-md5.c nettle/hmac-ripemd160.c \
nettle/hmac-sha1.c nettle/hmac-sha224.c nettle/hmac-sha256.c \
nettle/hmac-sha384.c nettle/hmac-sha512.c nettle/md5.c \
nettle/md5-compress.c nettle/md5-meta.c nettle/memxor.c \
nettle/ripemd160.c nettle/ripemd160-compress.c \
nettle/ripemd160-meta.c nettle/sha1.c nettle/sha1-compress.c \
nettle/sha1-meta.c nettle/sha224-meta.c nettle/sha256.c \
nettle/sha256-compress.c nettle/sha256-meta.c \
nettle/sha384-meta.c nettle/sha512.c nettle/sha512-compress.c \
nettle/sha512-meta.c nettle/write-be32.c nettle/write-le32.c \
nettle/write-le64.c crypt/crypt_blowfish.c \
crypt/crypt_gensalt.c sosemanuk.c linenoise.c
CXXSRCS = ast.cc base64.cc code_gen.cc collection.cc crypto.cc \
db_file.cc db_io.cc db_objects.cc db_properties.cc \
db_verbs.cc decompile.cc disassemble.cc eval_env.cc \
eval_vm.cc exec.cc execute.cc extensions.cc fileio.cc \
functions.cc garbage.cc json.cc keywords.cc list.cc log.cc \
map.cc match.cc name_lookup.cc network.cc net_mplex.cc \
net_proto.cc numbers.cc objects.cc parse_cmd.cc pattern.cc \
program.cc property.cc quota.cc server.cc storage.cc \
streams.cc str_intern.cc sym_table.cc system.cc tasks.cc \
timers.cc unparse.cc utils.cc verbs.cc version.cc
OPT_NET_SRCS = net_single.cc net_multi.cc net_mp_selct.cc \
net_mp_poll.cc net_mp_fake.cc net_tcp.cc net_bsd_tcp.cc \
net_bsd_lcl.cc net_sysv_tcp.cc net_sysv_lcl.cc
OPT_NET_OBJS = $(OPT_NET_SRCS:.cc=.o)
OPT_CSRCS = $(OPT_NET_SRCS)
YSRCS = parser.y
HDRS = ast.h base64.h bf_register.h code_gen.h collection.h crypto.h \
db.h db_io.h db_private.h decompile.h db_tune.h disassemble.h \
eval_env.h eval_vm.h exec.h execute.h functions.h garbage.h \
http_parser.h json.h keywords.h list.h log.h map.h match.h \
name_lookup.h network.h net_mplex.h net_multi.h net_proto.h \
numbers.h opcode.h options.h parse_cmd.h parser.h pattern.h \
program.h quota.h random.h regexpr.h server.h storage.h \
streams.h structures.h str_intern.h sym_table.h tasks.h \
timers.h tokens.h unparse.h utils.h verbs.h version.h \
yajl/yajl_alloc.h yajl/yajl_buf.h yajl/yajl_bytestack.h \
yajl/yajl_common.h yajl/yajl_encode.h yajl/yajl_gen.h \
yajl/yajl_lex.h yajl/yajl_parse.h yajl/yajl_parser.h \
yajl/yajl_version.h fileio.h system.h nettle/hmac.h \
nettle/macros.h nettle/md5.h nettle/memxor.h \
nettle/nettle-meta.h nettle/nettle-types.h \
nettle/nettle-write.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h sosemanuk.h linenoise.h
SYSHDRS = my-ctype.h my-fcntl.h my-in.h my-inet.h my-ioctl.h my-math.h \
my-poll.h my-signal.h my-socket.h my-stat.h my-stdarg.h my-stdio.h \
my-stdlib.h my-string.h my-stropts.h my-sys-time.h my-time.h \
my-tiuser.h my-types.h my-unistd.h my-wait.h
CLIENT_SRCS = client_bsd.c client_sysv.c
ALL_CSRCS = $(CSRCS) $(CXXSRCS) $(OPT_CSRCS) $(CLIENT_SRCS)
SRCS = $(ALL_CSRCS) keywords.gperf $(YSRCS) $(HDRS) $(SYSHDRS)
DISTFILES = $(SRCS) Makefile.in restart restart.sh \
Minimal.db README.Minimal \
ChangeLog.txt README configure.ac configure config.h.in \
MOOCodeSequences.txt AddingNewMOOTypes.txt pgperf aclocal.m4
COBJS = $(CSRCS:.c=.o)
CXXOBJS = $(CXXSRCS:.cc=.o)
YOBJS = $(YSRCS:.y=.o)
OBJS = $(COBJS) $(CXXOBJS) $(YOBJS) crypt/x86.o
moo: $(OBJS)
$(CXX) $(CFLAGS) $(OBJS) $(LIBRARIES) -o $@
crypt/x86.o: crypt/x86.S
$(CCAS) $(ASFLAGS) $< -o $@
parser.o: parser.y
$(YACC) -y -d parser.y
mv -f y.tab.c parser.c
$(CXX) $(CXXFLAGS) -c -o parser.o parser.c
rm parser.c
client_bsd: client_bsd.o
$(CXX) $(CFLAGS) client_bsd.o $(LIBRARIES) -o $@
client_sysv: client_sysv.o
$(CXX) $(CFLAGS) client_sysv.o $(LIBRARIES) -o $@
doc: ${DOCS}
info: ProgrammersManual.info
ProgrammersManual.info: ProgrammersManual.texinfo
makeinfo ${MI_OPTS} -D INFO -D INDEX ProgrammersManual.texinfo
txt: ProgrammersManual.txt
ProgrammersManual.txt: ProgrammersManual.tex-no-info
makeinfo ${MI_OPTS} ProgrammersManual.tex-no-info
# ought to be
#ProgrammersManual.txt: ProgrammersManual.texinfo
# makeinfo ${MI_OPTS} -D INDEX --no-headers ProgrammersManual.texinfo > ProgrammersManual.txt
ProgrammersManual.tex-no-info: ProgrammersManual.texinfo
sed -e '/^@node/d' \
-e '/^@set INDEX/d' \
-e '/^@menu/,/^@end menu/d' \
-e '/^@setfilename/s/info/txt/' \
-e 's/@ref{\([^,}]*,\)*\([^}]*\)}/the section "\2"/' \
-e 's/@pxref{\([^,}]*,\)*\([^}]*\)}/see the section "\2"/' \
-e 's/@xref{\([^,}]*,\)*\([^}]*\)}/See the section "\2"/' \
< ProgrammersManual.texinfo > ProgrammersManual.tex-no-info
ps: ProgrammersManual.ps
ProgrammersManual.ps: ProgrammersManual.dvi
dvips ProgrammersManual.dvi > ProgrammersManual.ps
dvi: ProgrammersManual.dvi
ProgrammersManual.dvi: ProgrammersManual.texinfo
tex ProgrammersManual.texinfo
texindex ProgrammersManual.fn
tex ProgrammersManual.texinfo
pdf: ProgrammersManual.pdf
ProgrammersManual.pdf: ProgrammersManual.texinfo
texi2pdf --clean --batch ProgrammersManual.texinfo
html: ProgrammersManual.html
ProgrammersManual.html: ProgrammersManual.texinfo
texi2html -menu -split none -init_file t2hinit.pl -expand info ProgrammersManual.texinfo
%.Z: %
compress -c $< > $@
%.gz: %
gzip -c $< > $@
# This rule gets around some "make"s' desire to `derive' it from `restart.sh'.
restart:
touch restart
configure: configure.ac
# autoconf
@echo "Not running autoconf; you must do this by hand."
touch configure
config.status: configure
env CC= YACC= ./configure --no-create
Makefile: Makefile.in config.status
@echo "[ $@ : $? ]"
./config.status
config.h: config.h.in config.status
@echo "[ $@ : $? ]"
./config.status
y.tab.h: parser.o
touch y.tab.h
# The LambdaMOO server project originally shipped with a lightly
# hacked version 2.1 of GNU gperf, renamed 'pgperf'; Pavel Curtis
# added a new command line option, '-l', to make the generated hash
# table case-insensitive. In 2002, the option '--ignore-case' was
# added to GNU gperf, and by 2011 the 'pgperf' shipped with LambdaMOO
# no longer compiled due to obsolesence (it used varargs.h, which is
# no longer supported). Also, the '-a' command line flag was replaced
# by '--language' and the flag '-p' was dropped (and no explanation
# given in gperf's ChangeLog). I've expanded the short options into
# long options here for readability. For the sake of history, this was
# the original incantation:
# pgperf -aCIptT -k1,3,$$ keywords.gperf
# --sw July 2011
keywords.cc: keywords.gperf
gperf --language=C++ --ignore-case --readonly-tables --struct-type \
--omit-struct-type --key-positions=1,3,$$ keywords.gperf \
| sed -e 's/#include <ctype.h>/#include "my-ctype.h"/' \
> keywords.cc
if [ ! -s keywords.cc ] ; then rm keywords.cc; fi
tags:
gtags .
clean:
rm -f $(OBJS) $(OPT_NET_OBJS) core parser.cc y.tab.c y.tab.h y.output makedep eddep
rm -f *~ ProgrammersManual.tex-no-info
rm -f ProgrammersManual.cp ProgrammersManual.fn ProgrammersManual.ky
rm -f ProgrammersManual.pg ProgrammersManual.tp ProgrammersManual.vr
rm -f ProgrammersManual.log ProgrammersManual.aux ProgrammersManual.toc
rm -f ProgrammersManual.fns
rm -f ProgrammersManual.tmp
distclean: clean
rm -f config.h Makefile config.status
rm -f ProgrammersManual.dvi* ProgrammersManual.p* ProgrammersManual.i*
rm -f ProgrammersManual.txt
rm -f ProgrammersManual.html
depend: ${ALL_CSRCS}
rm -f eddep makedep
gcc -MM ${CFLAGS} ${ALL_CSRCS} | sed -e '/:$$/d' > makedep
echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >eddep
echo '$$r makedep' >>eddep
echo 'w' >>eddep
cp Makefile.in Makefile.in.bak
ed - Makefile.in < eddep
rm -f eddep makedep
tests:
for test in test/*.rb ; do \
echo "\n\nRunning $$test..." ; \
ruby -rubygems -Itest/lib $$test ; \
done
# Have to do this one manually, since make depend cannot hack yacc files.
parser.o: my-ctype.h my-math.h my-stdlib.h my-string.h ast.h \
code_gen.h config.h functions.h keywords.h list.h \
log.h numbers.h opcode.h parser.h program.h storage.h \
streams.h structures.h sym_table.h utils.h version.h
# Must do these specially, since they depend upon C preprocessor options.
network.o: net_single.o net_multi.o
net_proto.o: net_bsd_tcp.o net_bsd_lcl.o net_sysv_tcp.o net_sysv_lcl.o
net_mplex.o: net_mp_selct.o net_mp_poll.o net_mp_fake.o
version.o: version_src.h version_options.h
version_src.h:
if [ ! -e $@ ]; then touch $@; fi
$(OPT_NET_OBJS):
touch $@
# DO NOT DELETE THIS LINE -- 'make depend' replaces everything below it.
http_parser.o: http_parser.c http_parser.h
regexpr.o: regexpr.c my-stdio.h config.h regexpr.h my-stdlib.h \
my-string.h
yajl.o: yajl/yajl.c yajl/yajl_lex.h yajl/yajl_common.h yajl/yajl_parse.h \
yajl/yajl_parser.h yajl/yajl_bytestack.h yajl/yajl_buf.h \
yajl/yajl_alloc.h
yajl_alloc.o: yajl/yajl_alloc.c yajl/yajl_alloc.h yajl/yajl_common.h
yajl_buf.o: yajl/yajl_buf.c yajl/yajl_buf.h yajl/yajl_alloc.h \
yajl/yajl_common.h
yajl_encode.o: yajl/yajl_encode.c yajl/yajl_encode.h yajl/yajl_buf.h \
yajl/yajl_alloc.h yajl/yajl_common.h yajl/yajl_gen.h
yajl_gen.o: yajl/yajl_gen.c yajl/yajl_buf.h yajl/yajl_alloc.h \
yajl/yajl_common.h yajl/yajl_encode.h yajl/yajl_gen.h
yajl_lex.o: yajl/yajl_lex.c yajl/yajl_lex.h yajl/yajl_common.h \
yajl/yajl_buf.h yajl/yajl_alloc.h
yajl_parser.o: yajl/yajl_parser.c yajl/yajl_lex.h yajl/yajl_common.h \
yajl/yajl_parser.h yajl/yajl_bytestack.h yajl/yajl_buf.h \
yajl/yajl_alloc.h yajl/yajl_parse.h yajl/yajl_encode.h yajl/yajl_gen.h
yajl_version.o: yajl/yajl_version.c yajl/yajl_version.h \
yajl/yajl_common.h
hmac.o: nettle/hmac.c nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h nettle/memxor.h
hmac-md5.o: nettle/hmac-md5.c nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h
hmac-ripemd160.o: nettle/hmac-ripemd160.c nettle/hmac.h \
nettle/nettle-meta.h nettle/nettle-types.h nettle/md5.h \
nettle/ripemd160.h nettle/sha1.h nettle/sha2.h
hmac-sha1.o: nettle/hmac-sha1.c nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h
hmac-sha224.o: nettle/hmac-sha224.c nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h
hmac-sha256.o: nettle/hmac-sha256.c nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h
hmac-sha384.o: nettle/hmac-sha384.c nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h
hmac-sha512.o: nettle/hmac-sha512.c nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h
md5.o: nettle/md5.c nettle/md5.h nettle/nettle-types.h nettle/macros.h \
nettle/nettle-write.h
md5-compress.o: nettle/md5-compress.c nettle/md5.h nettle/nettle-types.h \
nettle/macros.h
md5-meta.o: nettle/md5-meta.c nettle/nettle-meta.h nettle/nettle-types.h \
nettle/md5.h
memxor.o: nettle/memxor.c nettle/memxor.h nettle/nettle-types.h
ripemd160.o: nettle/ripemd160.c nettle/ripemd160.h nettle/nettle-types.h \
nettle/macros.h nettle/nettle-write.h
ripemd160-compress.o: nettle/ripemd160-compress.c nettle/ripemd160.h \
nettle/nettle-types.h nettle/macros.h
ripemd160-meta.o: nettle/ripemd160-meta.c nettle/nettle-meta.h \
nettle/nettle-types.h nettle/ripemd160.h
sha1.o: nettle/sha1.c nettle/sha1.h nettle/nettle-types.h nettle/macros.h \
nettle/nettle-write.h
sha1-compress.o: nettle/sha1-compress.c nettle/sha1.h \
nettle/nettle-types.h nettle/macros.h
sha1-meta.o: nettle/sha1-meta.c nettle/nettle-meta.h \
nettle/nettle-types.h nettle/sha1.h
sha224-meta.o: nettle/sha224-meta.c nettle/nettle-meta.h \
nettle/nettle-types.h nettle/sha2.h
sha256.o: nettle/sha256.c nettle/sha2.h nettle/nettle-types.h \
nettle/macros.h nettle/nettle-write.h
sha256-compress.o: nettle/sha256-compress.c nettle/sha2.h \
nettle/nettle-types.h nettle/macros.h
sha256-meta.o: nettle/sha256-meta.c nettle/nettle-meta.h \
nettle/nettle-types.h nettle/sha2.h
sha384-meta.o: nettle/sha384-meta.c nettle/nettle-meta.h \
nettle/nettle-types.h nettle/sha2.h
sha512.o: nettle/sha512.c nettle/sha2.h nettle/nettle-types.h \
nettle/macros.h
sha512-compress.o: nettle/sha512-compress.c nettle/sha2.h \
nettle/nettle-types.h nettle/macros.h
sha512-meta.o: nettle/sha512-meta.c nettle/nettle-meta.h \
nettle/nettle-types.h nettle/sha2.h
write-be32.o: nettle/write-be32.c nettle/nettle-write.h nettle/macros.h
write-le32.o: nettle/write-le32.c nettle/nettle-write.h nettle/macros.h
write-le64.o: nettle/write-le64.c nettle/nettle-write.h nettle/macros.h
crypt_blowfish.o: crypt/crypt_blowfish.c crypt/crypt_blowfish.h
crypt_gensalt.o: crypt/crypt_gensalt.c crypt/crypt_gensalt.h
sosemanuk.o: sosemanuk.c sosemanuk.h
linenoise.o: linenoise.c linenoise.h
ast.o: ast.cc my-string.h config.h ast.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h list.h streams.h log.h storage.h \
utils.h execute.h db.h opcode.h options.h parse_cmd.h
base64.o: base64.cc base64.h functions.h my-stdio.h config.h execute.h \
db.h program.h structures.h version.h opcode.h options.h parse_cmd.h \
log.h storage.h my-string.h streams.h utils.h server.h network.h
code_gen.o: code_gen.cc ast.h config.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h opcode.h options.h server.h network.h \
db.h storage.h my-string.h str_intern.h utils.h execute.h parse_cmd.h \
streams.h my-stdlib.h
collection.o: collection.cc bf_register.h collection.h structures.h \
my-stdio.h config.h functions.h execute.h db.h program.h version.h \
opcode.h options.h parse_cmd.h list.h streams.h map.h utils.h
crypto.o: crypto.cc functions.h my-stdio.h config.h execute.h db.h \
program.h structures.h version.h opcode.h options.h parse_cmd.h \
crypto.h list.h streams.h nettle/hmac.h nettle/nettle-meta.h \
nettle/nettle-types.h nettle/md5.h nettle/ripemd160.h nettle/sha1.h \
nettle/sha2.h random.h server.h network.h storage.h my-string.h \
utils.h
db_file.o: db_file.cc my-stat.h config.h my-unistd.h my-stdio.h \
my-stdlib.h collection.h structures.h db.h program.h version.h db_io.h \
db_private.h list.h streams.h log.h options.h server.h network.h \
storage.h my-string.h str_intern.h tasks.h execute.h opcode.h \
parse_cmd.h timers.h my-time.h utils.h
db_io.o: db_io.cc my-ctype.h config.h my-stdarg.h my-stdio.h my-stdlib.h \
db.h program.h structures.h version.h db_io.h db_private.h list.h \
streams.h log.h map.h numbers.h sosemanuk.h parser.h server.h \
network.h options.h storage.h my-string.h str_intern.h unparse.h
db_objects.o: db_objects.cc my-string.h config.h db.h program.h \
structures.h my-stdio.h version.h db_io.h db_private.h collection.h \
list.h streams.h server.h network.h options.h storage.h utils.h \
execute.h opcode.h parse_cmd.h xtrapbits.h
db_properties.o: db_properties.cc collection.h structures.h my-stdio.h \
config.h db.h program.h version.h db_private.h list.h streams.h \
server.h network.h options.h storage.h my-string.h utils.h execute.h \
opcode.h parse_cmd.h
db_verbs.o: db_verbs.cc my-stdlib.h config.h my-string.h db.h program.h \
structures.h my-stdio.h version.h db_private.h db_tune.h list.h \
streams.h log.h parse_cmd.h server.h network.h options.h storage.h \
utils.h execute.h opcode.h
decompile.o: decompile.cc ast.h config.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h decompile.h opcode.h options.h \
server.h network.h db.h storage.h my-string.h utils.h execute.h \
parse_cmd.h streams.h
disassemble.o: disassemble.cc my-stdio.h config.h bf_register.h db.h \
program.h structures.h version.h functions.h execute.h opcode.h \
options.h parse_cmd.h list.h streams.h storage.h my-string.h unparse.h \
utils.h verbs.h
eval_env.o: eval_env.cc config.h eval_env.h structures.h my-stdio.h \
version.h storage.h my-string.h sym_table.h utils.h execute.h db.h \
program.h opcode.h options.h parse_cmd.h streams.h
eval_vm.o: eval_vm.cc config.h db_io.h program.h structures.h my-stdio.h \
version.h decompile.h ast.h parser.h sym_table.h eval_vm.h execute.h \
db.h opcode.h options.h parse_cmd.h log.h map.h storage.h my-string.h \
tasks.h utils.h streams.h
exec.o: exec.cc my-fcntl.h config.h my-signal.h my-stdlib.h my-string.h \
my-unistd.h net_multi.h exec.h functions.h my-stdio.h execute.h db.h \
program.h structures.h version.h opcode.h options.h parse_cmd.h list.h \
streams.h log.h storage.h tasks.h utils.h
execute.o: execute.cc my-string.h config.h collection.h structures.h \
my-stdio.h db.h program.h version.h db_io.h decompile.h ast.h parser.h \
sym_table.h eval_env.h eval_vm.h execute.h opcode.h options.h \
parse_cmd.h functions.h list.h streams.h log.h map.h numbers.h \
sosemanuk.h server.h network.h storage.h tasks.h timers.h my-time.h \
utils.h
extensions.o: extensions.cc bf_register.h functions.h my-stdio.h config.h \
execute.h db.h program.h structures.h version.h opcode.h options.h \
parse_cmd.h db_tune.h utils.h streams.h
fileio.o: fileio.cc my-stat.h config.h my-unistd.h my-ctype.h my-string.h \
structures.h my-stdio.h bf_register.h functions.h execute.h db.h \
program.h version.h opcode.h options.h parse_cmd.h list.h streams.h \
storage.h utils.h server.h network.h tasks.h log.h fileio.h
functions.o: functions.cc my-stdarg.h config.h bf_register.h db_io.h \
program.h structures.h my-stdio.h version.h functions.h execute.h db.h \
opcode.h options.h parse_cmd.h list.h streams.h log.h map.h server.h \
network.h storage.h my-string.h unparse.h utils.h
garbage.o: garbage.cc functions.h my-stdio.h config.h execute.h db.h \
program.h structures.h version.h opcode.h options.h parse_cmd.h \
garbage.h list.h streams.h log.h map.h server.h network.h storage.h \
my-string.h utils.h
json.o: json.cc my-string.h config.h my-stdlib.h functions.h my-stdio.h \
execute.h db.h program.h structures.h version.h opcode.h options.h \
parse_cmd.h json.h list.h streams.h map.h numbers.h sosemanuk.h \
server.h network.h storage.h unparse.h utils.h yajl/yajl_gen.h \
yajl/yajl_common.h yajl/yajl_lex.h yajl/yajl_parse.h
keywords.o: keywords.cc my-string.h config.h keywords.h structures.h \
my-stdio.h version.h tokens.h ast.h parser.h program.h sym_table.h \
y.tab.h utils.h execute.h db.h opcode.h options.h parse_cmd.h \
streams.h
list.o: list.cc my-ctype.h config.h my-string.h bf_register.h \
collection.h structures.h my-stdio.h functions.h execute.h db.h \
program.h version.h opcode.h options.h parse_cmd.h list.h streams.h \
log.h map.h pattern.h storage.h unparse.h utils.h server.h network.h
log.o: log.cc my-stdarg.h config.h my-stdio.h my-string.h my-time.h \
my-unistd.h bf_register.h functions.h execute.h db.h program.h \
structures.h version.h opcode.h options.h parse_cmd.h log.h storage.h \
streams.h utils.h
map.o: map.cc my-string.h config.h functions.h my-stdio.h execute.h db.h \
program.h structures.h version.h opcode.h options.h parse_cmd.h list.h \
streams.h log.h map.h server.h network.h storage.h utils.h
match.o: match.cc my-stdlib.h config.h my-string.h db.h program.h \
structures.h my-stdio.h version.h match.h parse_cmd.h storage.h \
unparse.h utils.h execute.h opcode.h options.h streams.h
name_lookup.o: name_lookup.cc options.h config.h my-signal.h my-stdlib.h \
my-unistd.h my-inet.h my-in.h my-types.h my-socket.h my-wait.h \
my-string.h log.h my-stdio.h structures.h server.h network.h db.h \
program.h version.h storage.h timers.h my-time.h
network.o: network.cc options.h config.h net_multi.cc my-ctype.h \
my-fcntl.h my-ioctl.h my-signal.h my-stdio.h my-stdlib.h my-string.h \
my-unistd.h list.h structures.h streams.h log.h net_mplex.h \
net_multi.h net_proto.h network.h server.h db.h program.h version.h \
storage.h timers.h my-time.h utils.h execute.h opcode.h parse_cmd.h
net_mplex.o: net_mplex.cc options.h config.h net_mp_selct.cc my-string.h \
my-sys-time.h my-types.h log.h my-stdio.h structures.h net_mplex.h
net_proto.o: net_proto.cc options.h config.h net_bsd_tcp.cc my-inet.h \
my-in.h my-types.h my-socket.h my-stdlib.h my-string.h my-unistd.h \
list.h structures.h my-stdio.h streams.h log.h name_lookup.h \
net_proto.h server.h network.h db.h program.h version.h timers.h \
my-time.h utils.h execute.h opcode.h parse_cmd.h net_tcp.cc
numbers.o: numbers.cc my-math.h my-stdlib.h config.h my-string.h \
my-time.h functions.h my-stdio.h execute.h db.h program.h structures.h \
version.h opcode.h options.h parse_cmd.h log.h random.h server.h \
network.h sosemanuk.h storage.h streams.h utils.h
objects.o: objects.cc collection.h structures.h my-stdio.h config.h db.h \
program.h version.h db_io.h execute.h opcode.h options.h parse_cmd.h \
functions.h list.h streams.h numbers.h sosemanuk.h quota.h server.h \
network.h storage.h my-string.h utils.h
parse_cmd.o: parse_cmd.cc my-ctype.h config.h my-stdio.h my-stdlib.h \
my-string.h my-time.h db.h program.h structures.h version.h list.h \
streams.h match.h parse_cmd.h storage.h utils.h execute.h opcode.h \
options.h
pattern.o: pattern.cc my-ctype.h config.h my-stdlib.h my-string.h \
pattern.h storage.h structures.h my-stdio.h streams.h regexpr.h
program.o: program.cc ast.h config.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h list.h streams.h server.h network.h \
options.h db.h storage.h my-string.h utils.h execute.h opcode.h \
parse_cmd.h
property.o: property.cc db.h config.h program.h structures.h my-stdio.h \
version.h functions.h execute.h opcode.h options.h parse_cmd.h list.h \
streams.h storage.h my-string.h utils.h
quota.o: quota.cc config.h db.h program.h structures.h my-stdio.h \
version.h quota.h
server.o: server.cc my-types.h config.h my-signal.h my-stdarg.h \
my-stdio.h my-stdlib.h my-string.h my-unistd.h my-wait.h db.h \
program.h structures.h version.h db_io.h disassemble.h exec.h \
execute.h opcode.h options.h parse_cmd.h functions.h garbage.h list.h \
streams.h log.h nettle/sha2.h nettle/nettle-types.h network.h server.h \
numbers.h sosemanuk.h parser.h quota.h random.h storage.h tasks.h \
timers.h my-time.h unparse.h utils.h linenoise.h
storage.o: storage.cc my-stdlib.h config.h list.h structures.h my-stdio.h \
streams.h options.h server.h network.h db.h program.h version.h \
storage.h my-string.h utils.h execute.h opcode.h parse_cmd.h
streams.o: streams.cc my-stdarg.h config.h my-string.h my-stdio.h log.h \
structures.h storage.h streams.h
str_intern.o: str_intern.cc my-stdlib.h config.h log.h my-stdio.h \
structures.h storage.h my-string.h str_intern.h utils.h execute.h db.h \
program.h version.h opcode.h options.h parse_cmd.h streams.h
sym_table.o: sym_table.cc my-stdio.h config.h ast.h parser.h program.h \
structures.h version.h sym_table.h log.h storage.h my-string.h utils.h \
execute.h db.h opcode.h options.h parse_cmd.h streams.h
system.o: system.cc my-stdlib.h config.h my-string.h functions.h \
my-stdio.h execute.h db.h program.h structures.h version.h opcode.h \
options.h parse_cmd.h storage.h streams.h utils.h system.h
tasks.o: tasks.cc my-string.h config.h my-time.h db.h program.h \
structures.h my-stdio.h version.h db_io.h decompile.h ast.h parser.h \
sym_table.h eval_env.h eval_vm.h execute.h opcode.h options.h \
parse_cmd.h functions.h http_parser.h list.h streams.h log.h map.h \
match.h random.h server.h network.h storage.h tasks.h utils.h verbs.h
timers.o: timers.cc my-signal.h config.h my-stdlib.h my-sys-time.h \
options.h my-types.h my-time.h my-unistd.h timers.h
unparse.o: unparse.cc my-ctype.h config.h my-stdio.h ast.h parser.h \
program.h structures.h version.h sym_table.h decompile.h functions.h \
execute.h db.h opcode.h options.h parse_cmd.h keywords.h list.h \
streams.h log.h unparse.h storage.h my-string.h utils.h
utils.o: utils.cc my-ctype.h config.h my-stdio.h my-string.h db.h \
program.h structures.h version.h db_io.h garbage.h list.h streams.h \
log.h map.h match.h numbers.h sosemanuk.h quota.h server.h network.h \
options.h storage.h utils.h execute.h opcode.h parse_cmd.h
verbs.o: verbs.cc my-string.h config.h db.h program.h structures.h \
my-stdio.h version.h execute.h opcode.h options.h parse_cmd.h \
functions.h list.h streams.h log.h match.h parser.h server.h network.h \
storage.h unparse.h utils.h verbs.h
version.o: version.cc config.h version.h structures.h my-stdio.h list.h \
streams.h storage.h my-string.h utils.h execute.h db.h program.h \
opcode.h options.h parse_cmd.h server.h network.h version_src.h \
version_options.h
net_single.o: net_single.cc my-ctype.h config.h my-fcntl.h my-stdio.h \
my-unistd.h log.h structures.h network.h options.h server.h db.h \
program.h version.h streams.h utils.h execute.h opcode.h parse_cmd.h
net_multi.o: net_multi.cc my-ctype.h config.h my-fcntl.h my-ioctl.h \
my-signal.h my-stdio.h my-stdlib.h my-string.h my-unistd.h list.h \
structures.h streams.h log.h net_mplex.h net_multi.h net_proto.h \
options.h network.h server.h db.h program.h version.h storage.h \
timers.h my-time.h utils.h execute.h opcode.h parse_cmd.h
net_mp_selct.o: net_mp_selct.cc my-string.h config.h my-sys-time.h \
options.h my-types.h log.h my-stdio.h structures.h net_mplex.h
net_mp_poll.o: net_mp_poll.cc my-poll.h config.h log.h my-stdio.h \
structures.h net_mplex.h storage.h my-string.h
net_mp_fake.o: net_mp_fake.cc my-types.h config.h my-stat.h my-unistd.h \
net_mplex.h options.h storage.h my-string.h structures.h my-stdio.h
net_tcp.o: net_tcp.cc
net_bsd_tcp.o: net_bsd_tcp.cc my-inet.h config.h my-in.h my-types.h \
my-socket.h my-stdlib.h my-string.h my-unistd.h list.h structures.h \
my-stdio.h streams.h log.h name_lookup.h net_proto.h options.h \
server.h network.h db.h program.h version.h timers.h my-time.h utils.h \
execute.h opcode.h parse_cmd.h net_tcp.cc
net_bsd_lcl.o: net_bsd_lcl.cc my-socket.h config.h my-stdio.h my-string.h \
my-unistd.h log.h structures.h net_proto.h options.h storage.h utils.h \
execute.h db.h program.h version.h opcode.h parse_cmd.h streams.h
net_sysv_lcl.o: net_sysv_lcl.cc my-fcntl.h config.h my-stat.h my-stdio.h \
my-stdlib.h my-unistd.h list.h structures.h streams.h log.h \
net_multi.h net_proto.h options.h storage.h my-string.h utils.h \
execute.h db.h program.h version.h opcode.h parse_cmd.h
client_bsd.o: client_bsd.c my-socket.h config.h my-stdio.h my-stdlib.h \
my-string.h my-sys-time.h options.h my-types.h my-unistd.h
client_sysv.o: client_sysv.c my-fcntl.h config.h my-signal.h my-stdio.h \
my-stdlib.h my-string.h my-types.h my-stat.h my-unistd.h options.h