-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathMakefile.in
565 lines (522 loc) · 23.7 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
# 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
#
# with autoconf2 I'll go edit it to support --with-expat=
# Until then, set this to where you unpacked and compiled expat
#
EXPAT = ./expat
EXPAT_OBJS = $(EXPAT)/xmltok/*.o $(EXPAT)/xmlparse/*.o
CC = @CC@
LIBS = ucd/libucd.a @LIBS@ $(EXPAT_OBJS)
YACC = @YACC@
CFLAGS = @CFLAGS@
CPPFLAGS = -DEXPAT_XML -I. -Iucd -I$(EXPAT)/xmlparse @CPPFLAGS@
LDFLAGS = @LDFLAGS@
YFLAGS = -d
COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
CSRCS = ast.c code_gen.c db_file.c db_io.c db_objects.c db_properties.c \
db_verbs.c decompile.c disassemble.c eval_env.c eval_vm.c \
exceptions.c execute.c extensions.c functions.c keywords.c list.c \
log.c malloc.c match.c md5.c name_lookup.c network.c net_mplex.c \
net_proto.c numbers.c objects.c parse_cmd.c pattern.c program.c \
property.c quota.c ref_count.c server.c storage.c \
streams.c str_intern.c sym_table.c tasks.c timers.c unparse.c \
utf.c utf-ctype.c utils.c verbs.c version.c waif.c ext-xml.c
OPT_NET_SRCS = net_single.c net_multi.c \
net_mp_selct.c net_mp_poll.c net_mp_fake.c \
net_tcp.c \
net_bsd_tcp.c net_bsd_lcl.c net_sysv_tcp.c net_sysv_lcl.c
OPT_NET_OBJS = $(OPT_NET_SRCS:.c=.o)
OPT_CSRCS = gnu-malloc.c $(OPT_NET_SRCS)
YSRCS = parser.y
HDRS = ast.h bf_register.h code_gen.h db.h db_io.h db_private.h decompile.h \
db_tune.h \
disassemble.h eval_env.h eval_vm.h exceptions.h execute.h functions.h \
getpagesize.h keywords.h list.h log.h match.h md5.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 \
ref_count.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
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) $(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.in configure config.h.in \
MOOCodeSequences.txt AddingNewMOOTypes.txt aclocal.m4
COBJS = $(CSRCS:.c=.o)
YOBJS = $(YSRCS:.y=.o)
OBJS = $(COBJS) $(YOBJS) @OBJS@
all:
cd ucd && $(MAKE) all
cd $(EXPAT) && $(MAKE)
$(MAKE) moo
moo: $(OBJS)
$(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
pure_moo: moo
purify $(CC) $(CFLAGS) $(OBJS) $(LIBRARIES) -o $@
client_bsd: client_bsd.o
$(CC) $(CFLAGS) client_bsd.o $(LIBRARIES) -o $@
client_sysv: client_sysv.o
$(CC) $(CFLAGS) client_sysv.o $(LIBRARIES) -o $@
pcre/.libs/libpcre.a:
$(MAKE) -C pcre libpcre.la
# This rule gets around some "make"s' desire to `derive' it from `restart.sh'.
restart:
touch restart
configure: configure.in
autoconf
config.status: configure
./config.status --recheck || ./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.c: 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.c
dist.tar.Z: $(DISTFILES)
rm -f version_number
grep "server_version = " version.c \
| sed -e 's/^.* = "//' -e 's/";//' > version_number
rm -fr MOO-`cat version_number`
mkdir MOO-`cat version_number`
chmod 755 MOO-`cat version_number`
cp -pr $(DISTFILES) MOO-`cat version_number`
chmod u+w MOO-`cat version_number`/*
tar cvf - MOO-`cat version_number` | compress -c > dist.tar.Z.NEW
mv dist.tar.Z.NEW dist.tar.Z
rm -f LambdaMOO-`cat version_number`.tar.Z
ln dist.tar.Z LambdaMOO-`cat version_number`.tar.Z
rm -fr MOO-`cat version_number` version_number
tags:
etags -t $(SRCS)
clean:
rm -f $(OBJS) $(OPT_NET_OBJS) core parser.c y.tab.c y.tab.h y.output makedep eddep
cd ucd && $(MAKE) clean
$(MAKE) -C $(EXPAT) $@
test ! -e pcre/Makefile || $(MAKE) -C pcre $@
distclean: clean
rm -f config.h Makefile config.status
test ! -e pcre/Makefile || $(MAKE) -C pcre $@
depend: ${ALL_CSRCS}
rm -f eddep makedep
gcc -MM ${CPPFLAGS} ${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
.SUFFIXES: .c .o .i .s
.c.o:
${CC} ${CFLAGS} ${CPPFLAGS} -c -o $@ $<
.c.i:
${CC} ${CFLAGS} ${CPPFLAGS} -E -o $@ $<
.c.s:
${CC} ${CFLAGS} ${CPPFLAGS} -S -o $@ $<
###############################################################################
# $Log$
# Revision 1.8.2.3 2008/04/24 23:28:59 bjj
# Merge HEAD onto WAIF, bringing it approximately to 1.8.3
#
#
# Revision 1.8.2.2 2005/09/29 06:56:18 bjj
# Merge HEAD onto WAIF, bringing it approximately to 1.8.2
#
# Revision 1.8.2.1 2002/08/29 05:44:22 bjj
# Add WAIF type as distributed in version 0.95 (one small merge).
#
# Revision 1.10 2006/12/06 23:44:24 wrog
# Add parser.c to clean target
#
# Revision 1.9 2004/05/22 01:25:43 wrog
# merging in WROGUE changes (W_SRCIP, W_STARTUP, W_OOB)
#
# Revision 1.8.10.1 2003/06/01 12:33:07 wrog
# added net_tcp.c; (put db_tune.h in HDRS); ran makedepend
#
# Revision 1.8 2000/05/11 06:32:27 xythian
# fixed bloody "suspicious line 293" emacs warning when saving Makefile.in
# by tweaking quotes
#
# Revision 1.7 2000/01/11 01:54:05 nop
# CFLAGS line for poor users without inline keyword.
#
# Revision 1.6 2000/01/11 01:39:14 nop
# Long overdue make depend
#
# Revision 1.5 1998/02/19 07:36:16 nop
# Initial string interning during db load.
#
# Revision 1.4 1997/03/03 06:36:23 nop
# clean target doesn't force reconfiguration; distclean now does.
#
# Revision 1.3 1997/03/03 05:55:14 nop
# Changed to ed for make depend, since ex is a cheap plastic imitation of ed
# on many Linux systems. Added better optimization suggestion.
#
# Revision 1.2 1997/03/03 04:40:46 nop
# Avoid running autoconf automatically
#
# Revision 1.1.1.1 1997/03/03 03:45:05 nop
# LambdaMOO 1.8.0p5
#
# Revision 2.10 1996/04/19 01:28:40 pavel
# Ran a new `make depend'. Release 1.8.0p4.
#
# Revision 2.9 1996/03/10 01:31:24 pavel
# Added pgperf directory and aclocal.m4 file to the distribution.
# Release 1.8.0.
#
# Revision 2.8 1996/02/18 23:18:02 pavel
# Added md5.[ch]. Release 1.8.0beta3.
#
# Revision 2.7 1996/02/08 07:26:19 pavel
# Updated copyright notice for 1996. Release 1.8.0beta1 (again).
#
# Revision 2.6 1996/02/08 05:46:27 pavel
# Added numbers.h, AddingNewMOOTypes.txt. Updated dependencies. Made pure_moo
# depend on moo. Release 1.8.0beta1.
#
# Revision 2.5 1996/01/16 07:35:55 pavel
# Fixed dependencies. Release 1.8.0alpha6.
#
# Revision 2.4 1996/01/11 07:58:54 pavel
# Fixed dependencies for parser.o. Release 1.8.0alpha5.
#
# Revision 2.3 1995/12/31 03:29:29 pavel
# Fixed dependencies for parser.y and the networking modules.
# Release 1.8.0alpha4.
#
# Revision 2.2 1995/12/28 00:32:32 pavel
# Added verbs.h. Release 1.8.0alpha3.
#
# Revision 2.1 1995/12/11 08:07:47 pavel
# Added a few more derived files to `make clean'. Release 1.8.0alpha2.
#
# Revision 2.0 1995/11/30 05:45:03 pavel
# New baseline version, corresponding to release 1.8.0alpha1.
#
# Revision 1.26 1992/10/23 23:10:29 pavel
# Updated dependency information for release 1.7.0 and added copyright notice.
#
# Revision 1.25 1992/10/23 19:12:08 pavel
# A few last portability changes for release 1.7.0.
#
# Revision 1.24 1992/10/21 03:02:35 pavel
# Converted to use new automatic configuration system.
#
# Revision 1.23 1992/10/17 20:14:17 pavel
# Numerous changes in response to beta-testing portability problems.
#
# Revision 1.22 1992/10/06 01:32:41 pavel
# Dyked out useless XNS network support.
# Added sources for clients and a few new my-*.h files.
# Fixed nasty bug in `make depend' code.
#
# Revision 1.21 1992/09/23 17:23:08 pavel
# Added support for the whole family of networking protocol and multiplexing
# wait implementations; it should now be easy to add new `optional' sources,
# only used if certain combinations of preprocessor flags are set.
#
# Revision 1.20 1992/09/14 18:42:47 pjames
# Updated.
#
# Revision 1.19 1992/09/14 17:46:39 pjames
# Updated.
#
# Revision 1.18 1992/09/08 22:49:59 pjames
# Took out bf_move.c
#
# Revision 1.17 1992/09/08 22:09:23 pjames
# Updated for new bf_ filenames
#
# Revision 1.16 1992/09/03 23:49:13 pavel
# Added support for multiple complete network implementations.
#
# Revision 1.15 1992/09/03 16:32:40 pjames
# Updated.
#
# Revision 1.14 1992/08/31 23:43:57 pavel
# Added math library to the LIBRARIES line for A/UX.
#
# Revision 1.13 1992/08/28 16:32:18 pjames
# Added ref_count modules.
#
# Revision 1.12 1992/08/21 01:09:56 pavel
# Minor fix.
#
# Revision 1.11 1992/08/21 00:56:39 pavel
# Shortened the names of several files to fit within the 14-character limit
# imposed on certain systems.
# Moved the specification of all configuration options other than those
# directly related to the compiler command line into config.h. Also
# reorganized the ones that are left to make it easier for folks to see what's
# necessary.
#
# Revision 1.10 1992/08/14 00:35:21 pavel
# Fixed rule for dist.tar.Z to be idempotent.
#
# Revision 1.9 1992/08/13 23:35:42 pavel
# Cleaned up CFLAGS organization.
#
# Revision 1.8 1992/08/13 23:24:34 pavel
# Did a more recent `make depend'...
#
# Revision 1.7 1992/08/13 22:48:20 pjames
# Added my-math.h
#
# Revision 1.6 1992/08/13 21:29:58 pjames
# Added -DMOO to COMPILE.c
#
# Revision 1.5 1992/08/11 17:06:45 pjames
# Updated with new source files, removed old source files, fixed dependencies.
#
# Revision 1.3 1992/07/27 18:30:21 pjames
# Update what vector.o and vector.po depend on.
###############################################################################
# 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
$(OPT_NET_OBJS):
touch $@
# DO NOT DELETE THIS LINE -- 'make depend' replaces everything below it.
ast.o: ast.c my-string.h config.h ast.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h list.h log.h storage.h ref_count.h \
utils.h execute.h db.h opcode.h options.h parse_cmd.h
code_gen.o: code_gen.c ast.h config.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h exceptions.h opcode.h options.h \
storage.h my-string.h ref_count.h str_intern.h utils.h execute.h db.h \
parse_cmd.h my-stdlib.h
db_file.o: db_file.c my-stat.h config.h my-unistd.h my-stdio.h \
my-stdlib.h my-string.h db.h program.h structures.h version.h db_io.h \
db_private.h exceptions.h list.h log.h options.h server.h network.h \
storage.h ref_count.h streams.h str_intern.h tasks.h execute.h opcode.h \
parse_cmd.h timers.h my-time.h
db_io.o: db_io.c config.h my-stdarg.h my-stdio.h my-stdlib.h my-string.h \
db_io.h program.h structures.h version.h db_private.h exceptions.h \
list.h log.h numbers.h parser.h storage.h ref_count.h streams.h \
str_intern.h unparse.h
db_objects.o: db_objects.c config.h db.h program.h structures.h \
my-stdio.h version.h db_private.h exceptions.h list.h storage.h \
my-string.h ref_count.h utils.h execute.h opcode.h options.h \
parse_cmd.h
db_properties.o: db_properties.c config.h db.h program.h structures.h \
my-stdio.h version.h db_private.h exceptions.h list.h storage.h \
my-string.h ref_count.h utils.h execute.h opcode.h options.h \
parse_cmd.h
db_verbs.o: db_verbs.c my-stdlib.h config.h my-string.h db.h program.h \
structures.h my-stdio.h version.h db_private.h exceptions.h db_tune.h \
list.h log.h parse_cmd.h storage.h ref_count.h utils.h execute.h \
opcode.h options.h
decompile.o: decompile.c ast.h config.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h decompile.h exceptions.h opcode.h \
options.h storage.h my-string.h ref_count.h utils.h execute.h db.h \
parse_cmd.h
disassemble.o: disassemble.c 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 storage.h my-string.h ref_count.h \
streams.h unparse.h utils.h verbs.h
eval_env.o: eval_env.c config.h eval_env.h structures.h my-stdio.h \
version.h storage.h my-string.h ref_count.h sym_table.h utils.h \
execute.h db.h program.h opcode.h options.h parse_cmd.h
eval_vm.o: eval_vm.c 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 storage.h my-string.h \
ref_count.h tasks.h
exceptions.o: exceptions.c exceptions.h config.h
execute.o: execute.c my-string.h config.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 \
exceptions.h functions.h list.h log.h numbers.h server.h network.h \
storage.h ref_count.h streams.h tasks.h timers.h my-time.h utf.h \
utils.h
extensions.o: extensions.c 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
functions.o: functions.c 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 log.h server.h network.h \
storage.h my-string.h ref_count.h streams.h unparse.h utils.h
keywords.o: keywords.c my-ctype.h config.h my-string.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
list.o: list.c my-ctype.h config.h my-string.h my-math.h bf_register.h \
exceptions.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 log.h \
md5.h pattern.h random.h ref_count.h streams.h storage.h unparse.h \
ucd/ucd.h utf.h utils.h
log.o: log.c my-stdarg.h config.h my-stdio.h my-string.h my-time.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 ref_count.h \
streams.h utils.h
malloc.o: malloc.c options.h config.h
match.o: match.c my-stdlib.h config.h my-string.h db.h program.h \
structures.h my-stdio.h version.h exceptions.h match.h parse_cmd.h \
storage.h ref_count.h unparse.h utils.h execute.h opcode.h options.h
md5.o: md5.c my-string.h config.h md5.h
name_lookup.o: name_lookup.c 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 storage.h \
ref_count.h timers.h my-time.h
network.o: network.c options.h config.h net_multi.c my-ctype.h my-fcntl.h \
my-ioctl.h my-signal.h my-stdio.h my-stdlib.h my-string.h my-unistd.h \
exceptions.h list.h structures.h log.h net_mplex.h net_multi.h \
net_proto.h network.h server.h streams.h storage.h ref_count.h timers.h \
my-time.h utf.h utils.h execute.h db.h program.h version.h opcode.h \
parse_cmd.h
net_mplex.o: net_mplex.c options.h config.h net_mp_selct.c 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.c options.h config.h net_bsd_tcp.c 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 log.h name_lookup.h net_proto.h server.h \
network.h streams.h timers.h my-time.h utils.h execute.h db.h program.h \
version.h opcode.h parse_cmd.h net_tcp.c
numbers.o: numbers.c 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 storage.h ref_count.h \
utils.h bf_register.h
objects.o: objects.c db.h config.h program.h structures.h my-stdio.h \
version.h db_io.h exceptions.h execute.h opcode.h options.h parse_cmd.h \
functions.h list.h numbers.h quota.h server.h network.h storage.h \
my-string.h ref_count.h utils.h
parse_cmd.o: parse_cmd.c 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 \
match.h parse_cmd.h storage.h ref_count.h utils.h execute.h opcode.h \
options.h
pattern.o: pattern.c my-stdio.h config.h my-string.h pattern.h streams.h \
utf.h storage.h structures.h ref_count.h exceptions.h
program.o: program.c ast.h config.h parser.h program.h structures.h \
my-stdio.h version.h sym_table.h exceptions.h list.h storage.h \
my-string.h ref_count.h utils.h execute.h db.h opcode.h options.h \
parse_cmd.h
property.o: property.c 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 \
storage.h my-string.h ref_count.h utils.h
quota.o: quota.c config.h db.h program.h structures.h my-stdio.h \
version.h quota.h
ref_count.o: ref_count.c config.h exceptions.h ref_count.h storage.h \
my-string.h structures.h my-stdio.h
server.o: server.c 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 execute.h opcode.h \
options.h parse_cmd.h functions.h list.h log.h network.h server.h \
parser.h random.h storage.h ref_count.h streams.h tasks.h timers.h \
my-time.h unparse.h utils.h
storage.o: storage.c my-stdlib.h config.h my-string.h exceptions.h list.h \
structures.h my-stdio.h options.h ref_count.h storage.h utils.h \
execute.h db.h program.h version.h opcode.h parse_cmd.h
streams.o: streams.c my-stdarg.h config.h my-string.h my-stdio.h log.h \
structures.h storage.h ref_count.h streams.h utf.h
str_intern.o: str_intern.c my-stdlib.h config.h my-string.h log.h \
my-stdio.h structures.h storage.h ref_count.h str_intern.h utils.h \
execute.h db.h program.h version.h opcode.h options.h parse_cmd.h
sym_table.o: sym_table.c my-stdio.h config.h ast.h parser.h program.h \
structures.h version.h sym_table.h exceptions.h log.h storage.h \
my-string.h ref_count.h utils.h execute.h db.h opcode.h options.h \
parse_cmd.h
tasks.o: tasks.c 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 exceptions.h functions.h list.h log.h match.h random.h \
server.h network.h storage.h ref_count.h streams.h tasks.h utils.h \
verbs.h
timers.o: timers.c 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.c my-ctype.h config.h my-stdio.h ast.h parser.h \
program.h structures.h version.h sym_table.h decompile.h exceptions.h \
functions.h execute.h db.h opcode.h options.h parse_cmd.h keywords.h \
list.h log.h unparse.h storage.h my-string.h ref_count.h streams.h \
utils.h
utf.o: utf.c utf.h streams.h config.h
utf-ctype.o: utf-ctype.c config.h ucd/ucd.h my-ctype.h
utils.o: utils.c my-ctype.h config.h my-stdio.h my-string.h db.h \
program.h structures.h version.h db_io.h exceptions.h list.h log.h \
match.h numbers.h ref_count.h server.h network.h options.h storage.h \
streams.h utf.h utils.h execute.h opcode.h parse_cmd.h
verbs.o: verbs.c my-string.h config.h db.h program.h structures.h \
my-stdio.h version.h exceptions.h execute.h opcode.h options.h \
parse_cmd.h functions.h list.h log.h match.h parser.h server.h \
network.h storage.h ref_count.h unparse.h utils.h verbs.h
version.o: version.c config.h version.h
gnu-malloc.o: gnu-malloc.c getpagesize.h
net_single.o: net_single.c my-ctype.h config.h my-fcntl.h my-stdio.h \
my-unistd.h log.h structures.h network.h options.h server.h streams.h \
utils.h execute.h db.h program.h version.h opcode.h parse_cmd.h
net_multi.o: net_multi.c 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 exceptions.h \
list.h structures.h log.h net_mplex.h net_multi.h net_proto.h options.h \
network.h server.h streams.h storage.h ref_count.h timers.h my-time.h \
utf.h utils.h execute.h db.h program.h version.h opcode.h parse_cmd.h
net_mp_selct.o: net_mp_selct.c 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.c my-poll.h config.h log.h my-stdio.h \
structures.h net_mplex.h storage.h my-string.h ref_count.h
net_tcp.o: net_tcp.c
net_bsd_tcp.o: net_bsd_tcp.c 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 log.h name_lookup.h net_proto.h options.h server.h network.h \
streams.h timers.h my-time.h utils.h execute.h db.h program.h version.h \
opcode.h parse_cmd.h net_tcp.c
net_bsd_lcl.o: net_bsd_lcl.c 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 \
ref_count.h utils.h execute.h db.h program.h version.h opcode.h \
parse_cmd.h
net_sysv_tcp.o: net_sysv_tcp.c my-inet.h config.h my-fcntl.h my-in.h \
my-types.h my-ioctl.h my-socket.h my-stdlib.h my-string.h my-stropts.h \
my-tiuser.h my-unistd.h log.h my-stdio.h structures.h name_lookup.h \
net_proto.h options.h server.h network.h streams.h timers.h my-time.h \
net_tcp.c
net_sysv_lcl.o: net_sysv_lcl.c my-fcntl.h config.h my-stat.h my-stdio.h \
my-stdlib.h my-unistd.h exceptions.h list.h structures.h log.h \
net_multi.h net_proto.h options.h storage.h my-string.h ref_count.h \
streams.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