This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.0 alpha 3
[perl5.git] / makefile.lib
1 # : Makefile.SH,v 303Revision: 4.0.1.4 303Date: 92/06/08 11:40:43 $
2 #
3 # $Log: Makefile.SH,v $
4 # Revision 4.0.1.4  92/06/08  11:40:43  lwall
5 # patch20: cray didn't give enough memory to /bin/sh
6 # patch20: various and sundry fixes
7
8 # Revision 4.0.1.3  91/11/05  15:48:11  lwall
9 # patch11: saberized perl
10 # patch11: added support for dbz
11
12 # Revision 4.0.1.2  91/06/07  10:14:43  lwall
13 # patch4: cflags now emits entire cc command except for the filename
14 # patch4: alternate make programs are now semi-supported
15 # patch4: uperl.o no longer tries to link in libraries prematurely
16 # patch4: installperl now installs x2p stuff too
17
18 # Revision 4.0.1.1  91/04/11  17:30:39  lwall
19 # patch1: C flags are now settable on a per-file basis
20
21 # Revision 4.0  91/03/20  00:58:54  lwall
22 # 4.0 baseline.
23
24
25
26 CC = cc
27 YACC = /bin/yacc
28 bin = /usr/local/bin
29 scriptdir = /usr/local/bin
30 privlib = /usr/local/lib/perl
31 mansrc = /usr/man/manl
32 manext = l
33 LDFLAGS = 
34 CLDFLAGS = 
35 SMALL = 
36 LARGE =  
37 mallocsrc = malloc.c
38 mallocobj = malloc.o
39 SLN = ln -s
40 RMS = rm -f
41 LIB = .
42
43 libs = -ldbm -lm -lposix 
44
45 public = perl taintperl 
46
47 shellflags = 
48
49 # To use an alternate make, set  in config.sh.
50 MAKE = make
51
52
53 CCCMD = `sh $(shellflags) cflags $@`
54
55 private = 
56
57 scripts = h2ph
58
59 manpages = perl.man h2ph.man
60
61 util =
62
63 sh = Makefile.SH makedepend.SH h2ph.SH
64
65 h1 = EXTERN.h INTERN.h arg.h array.h cmd.h config.h embed.h form.h handy.h
66 h2 = hash.h perl.h regcomp.h regexp.h spat.h stab.h str.h util.h
67
68 h = $(h1) $(h2)
69
70 c1 = array.c cmd.c cons.c consarg.c doarg.c doio.c dolist.c dump.c
71 c2 = eval.c form.c hash.c main.c $(mallocsrc) perl.c pp.c regcomp.c regexec.c
72 c3 = stab.c str.c toke.c util.c usersub.c
73
74 c = $(c1) $(c2) $(c3)
75
76 s1 = array.c cmd.c cons.c consarg.c doarg.c doio.c dolist.c dump.c
77 s2 = eval.c form.c hash.c main.c perl.c pp.c regcomp.c regexec.c
78 s3 = stab.c str.c toke.c util.c usersub.c perly.c
79
80 saber = $(s1) $(s2) $(s3)
81
82 obj1 = array.o cmd.o cons.o consarg.o doarg.o doio.o dolist.o dump.o
83 obj2 = eval.o form.o $(mallocobj) perl.o pp.o regcomp.o regexec.o
84 obj3 = stab.o str.o toke.o util.o
85
86 obj = $(obj1) $(obj2) $(obj3)
87
88 tobj1 = tarray.o tcmd.o tcons.o tconsarg.o tdoarg.o tdoio.o tdolist.o tdump.o
89 tobj2 = teval.o tform.o thash.o $(mallocobj) tpp.o tregcomp.o tregexec.o
90 tobj3 = tstab.o tstr.o ttoke.o tutil.o
91
92 tobj = $(tobj1) $(tobj2) $(tobj3)
93
94 lintflags = -hbvxac
95
96 addedbyconf = Makefile.old bsd eunice filexp loc pdp11 usg v7
97
98 # grrr
99 SHELL = /bin/sh
100
101 .c.o:
102         $(CCCMD) $*.c
103
104 all: libperl.rlb
105
106 #all: $(public) $(private) $(util) uperl.o $(scripts)
107 #       cd x2p; $(MAKE) all
108 #       touch all
109
110 # This is the standard version that contains no "taint" checks and is
111 # used for all scripts that aren't set-id or running under something set-id.
112 # The $& notation is tells Sequent machines that it can do a parallel make,
113 # and is harmless otherwise.
114
115 #perl: $& main.o $(obj) hash.o perly.o usersub.o
116 #       $(CC) $(LARGE) $(CLDFLAGS) main.o $(obj) hash.o perly.o usersub.o \
117 #           $(libs) -o perl
118 #       echo '\a'
119
120 perl: $& main.o libperl.rlb
121         $(CC) $(LARGE) $(CLDFLAGS) main.o $(LIB)/libperl.a $(libs) -o perl
122         echo '\a'
123
124 libperl.rlb: $(LIB)/libperl.a
125         ranlib $(LIB)/libperl.a
126         touch libperl.rlb
127
128 $(LIB)/libperl.a: $& perly.o perl.o $(obj) hash.o usersub.o
129         ar rcuv $(LIB)/libperl.a $(obj) hash.o perly.o usersub.o
130
131 # This version, if specified in Configure, does ONLY those scripts which need
132 # set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
133 # checks as well as the special code to validate that the script in question
134 # has been invoked correctly.
135
136 suidperl: $& sperl.o main.o libtperl.rlb
137         $(CC) $(LARGE) $(CLDFLAGS) sperl.o main.o libtperl.a $(libs) -o suidperl
138
139 # This version interprets scripts that are already set-id either via a wrapper
140 # or through the kernel allowing set-id scripts (bad idea).  Taintperl must
141 # NOT be setuid to root or anything else.  The only difference between it
142 # and normal perl is the presence of the "taint" checks.
143
144 taintperl: $& main.o libtperl.rlb
145         $(CC) $(LARGE) $(CLDFLAGS) main.o libtperl.a $(libs) -o taintperl
146
147 libtperl.rlb: libtperl.a
148         ranlib libtperl.a
149         touch libtperl.rlb
150
151 libtperl.a: $& tperly.o tperl.o $(tobj) thash.o usersub.o
152         ar rcuv libtperl.a $(tobj) thash.o tperly.o usersub.o tperl.o
153
154 # This command assumes that /usr/include/dbz.h and /usr/lib/dbz.o exist.
155
156 dbzperl: $& main.o zhash.o libperl.rlb
157         $(CC) $(LARGE) $(CLDFLAGS) main.o zhash.o /usr/lib/dbz.o $(LIB)/libperl.a $(libs) -o dbzperl
158
159 zhash.o: hash.c $(h)
160         $(RMS) zhash.c
161         $(SLN) hash.c zhash.c
162         $(CCCMD) -DWANT_DBZ zhash.c
163         $(RMS) zhash.c
164
165 uperl.o: $& $(obj) main.o hash.o perly.o
166         -ld $(LARGE) $(LDFLAGS) -r $(obj) main.o hash.o perly.o -o uperl.o
167
168 saber: $(saber)
169         # load $(saber)
170         # load /lib/libm.a
171
172 # Replicating all this junk is yucky, but I don't see a portable way to fix it.
173
174 tperly.o: perly.c perly.h $(h)
175         $(RMS) tperly.c
176         $(SLN) perly.c tperly.c
177         $(CCCMD) -DTAINT tperly.c
178         $(RMS) tperly.c
179
180 tperl.o: perl.c perly.h patchlevel.h perl.h $(h)
181         $(RMS) tperl.c
182         $(SLN) perl.c tperl.c
183         $(CCCMD) -DTAINT tperl.c
184         $(RMS) tperl.c
185
186 sperl.o: perl.c perly.h patchlevel.h $(h)
187         $(RMS) sperl.c
188         $(SLN) perl.c sperl.c
189         $(CCCMD) -DTAINT -DIAMSUID sperl.c
190         $(RMS) sperl.c
191
192 tarray.o: array.c $(h)
193         $(RMS) tarray.c
194         $(SLN) array.c tarray.c
195         $(CCCMD) -DTAINT tarray.c
196         $(RMS) tarray.c
197
198 tcmd.o: cmd.c $(h)
199         $(RMS) tcmd.c
200         $(SLN) cmd.c tcmd.c
201         $(CCCMD) -DTAINT tcmd.c
202         $(RMS) tcmd.c
203
204 tcons.o: cons.c $(h) perly.h
205         $(RMS) tcons.c
206         $(SLN) cons.c tcons.c
207         $(CCCMD) -DTAINT tcons.c
208         $(RMS) tcons.c
209
210 tconsarg.o: consarg.c $(h)
211         $(RMS) tconsarg.c
212         $(SLN) consarg.c tconsarg.c
213         $(CCCMD) -DTAINT tconsarg.c
214         $(RMS) tconsarg.c
215
216 tdoarg.o: doarg.c $(h)
217         $(RMS) tdoarg.c
218         $(SLN) doarg.c tdoarg.c
219         $(CCCMD) -DTAINT tdoarg.c
220         $(RMS) tdoarg.c
221
222 tdoio.o: doio.c $(h)
223         $(RMS) tdoio.c
224         $(SLN) doio.c tdoio.c
225         $(CCCMD) -DTAINT tdoio.c
226         $(RMS) tdoio.c
227
228 tdolist.o: dolist.c $(h)
229         $(RMS) tdolist.c
230         $(SLN) dolist.c tdolist.c
231         $(CCCMD) -DTAINT tdolist.c
232         $(RMS) tdolist.c
233
234 tdump.o: dump.c $(h)
235         $(RMS) tdump.c
236         $(SLN) dump.c tdump.c
237         $(CCCMD) -DTAINT tdump.c
238         $(RMS) tdump.c
239
240 teval.o: eval.c $(h)
241         $(RMS) teval.c
242         $(SLN) eval.c teval.c
243         $(CCCMD) -DTAINT teval.c
244         $(RMS) teval.c
245
246 tform.o: form.c $(h)
247         $(RMS) tform.c
248         $(SLN) form.c tform.c
249         $(CCCMD) -DTAINT tform.c
250         $(RMS) tform.c
251
252 thash.o: hash.c $(h)
253         $(RMS) thash.c
254         $(SLN) hash.c thash.c
255         $(CCCMD) -DTAINT thash.c
256         $(RMS) thash.c
257
258 tpp.o: pp.c $(h)
259         $(RMS) tpp.c
260         $(SLN) pp.c tpp.c
261         $(CCCMD) -DTAINT tpp.c
262         $(RMS) tpp.c
263
264 tregcomp.o: regcomp.c $(h)
265         $(RMS) tregcomp.c
266         $(SLN) regcomp.c tregcomp.c
267         $(CCCMD) -DTAINT tregcomp.c
268         $(RMS) tregcomp.c
269
270 tregexec.o: regexec.c $(h)
271         $(RMS) tregexec.c
272         $(SLN) regexec.c tregexec.c
273         $(CCCMD) -DTAINT tregexec.c
274         $(RMS) tregexec.c
275
276 tstab.o: stab.c $(h)
277         $(RMS) tstab.c
278         $(SLN) stab.c tstab.c
279         $(CCCMD) -DTAINT tstab.c
280         $(RMS) tstab.c
281
282 tstr.o: str.c $(h) perly.h
283         $(RMS) tstr.c
284         $(SLN) str.c tstr.c
285         $(CCCMD) -DTAINT tstr.c
286         $(RMS) tstr.c
287
288 ttoke.o: toke.c $(h) perly.h
289         $(RMS) ttoke.c
290         $(SLN) toke.c ttoke.c
291         $(CCCMD) -DTAINT ttoke.c
292         $(RMS) ttoke.c
293
294 tutil.o: util.c $(h)
295         $(RMS) tutil.c
296         $(SLN) util.c tutil.c
297         $(CCCMD) -DTAINT tutil.c
298         $(RMS) tutil.c
299
300 perly.h: perly.c
301         @ echo Dummy dependency for dumb parallel make
302         touch perly.h
303
304 embed.h: embed_h.SH global.var interp.var
305         sh embed_h.SH
306
307 perly.c: perly.y perly.fixer
308         @ \
309 case "$(YACC)" in \
310     *bison*) echo 'Expect' 25 shift/reduce and 53 reduce/reduce conflicts;; \
311     *) echo 'Expect' 27 shift/reduce and 51 reduce/reduce conflicts;; \
312 esac
313         $(YACC) -d perly.y
314         sh $(shellflags) ./perly.fixer y.tab.c perly.c
315         mv y.tab.h perly.h
316         echo 'extern YYSTYPE yylval;' >>perly.h
317
318 perly.o: perly.c perly.h $(h)
319         $(CCCMD) perly.c
320
321 install: all
322         ./perl installperl
323
324 clean:
325         rm -f *.o all perl taintperl suidperl perly.c
326         cd x2p; $(MAKE) clean
327
328 realclean: clean
329         cd x2p; $(MAKE) realclean
330         rm -f *.orig */*.orig *~ */*~ core $(addedbyconf) h2ph h2ph.man
331         rm -f perly.c perly.h t/perl Makefile config.h makedepend makedir
332         rm -f makefile x2p/Makefile x2p/makefile cflags x2p/cflags
333         rm -f c2ph pstruct
334
335 # The following lint has practically everything turned on.  Unfortunately,
336 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
337 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
338 # for that spot.
339
340 lint: perly.c $(c)
341         lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz
342
343 depend: makedepend
344         - test -f perly.h || cp /dev/null perly.h
345         ./makedepend
346         - test -s perly.h || /bin/rm -f perly.h
347         cd x2p; $(MAKE) depend
348
349 test: perl
350         - cd t && chmod +x TEST */*.t
351         - cd t && (rm -f perl; $(SLN) ../perl perl) && ./perl TEST </dev/tty
352
353 clist:
354         echo $(c) | tr ' ' '\012' >.clist
355
356 hlist:
357         echo $(h) | tr ' ' '\012' >.hlist
358
359 shlist:
360         echo $(sh) | tr ' ' '\012' >.shlist
361
362 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
363 # If this runs make out of memory, delete /usr/include lines.
364 array.o: 
365 array.o: /usr/ucbinclude/ctype.h
366 array.o: /usr/ucbinclude/dirent.h
367 array.o: /usr/ucbinclude/errno.h
368 array.o: /usr/ucbinclude/machine/param.h
369 array.o: /usr/ucbinclude/machine/setjmp.h
370 array.o: /usr/ucbinclude/ndbm.h
371 array.o: /usr/ucbinclude/netinet/in.h
372 array.o: /usr/ucbinclude/setjmp.h
373 array.o: /usr/ucbinclude/stdio.h
374 array.o: /usr/ucbinclude/sys/dirent.h
375 array.o: /usr/ucbinclude/sys/errno.h
376 array.o: /usr/ucbinclude/sys/filio.h
377 array.o: /usr/ucbinclude/sys/ioccom.h
378 array.o: /usr/ucbinclude/sys/ioctl.h
379 array.o: /usr/ucbinclude/sys/param.h
380 array.o: /usr/ucbinclude/sys/signal.h
381 array.o: /usr/ucbinclude/sys/sockio.h
382 array.o: /usr/ucbinclude/sys/stat.h
383 array.o: /usr/ucbinclude/sys/stdtypes.h
384 array.o: /usr/ucbinclude/sys/sysmacros.h
385 array.o: /usr/ucbinclude/sys/time.h
386 array.o: /usr/ucbinclude/sys/times.h
387 array.o: /usr/ucbinclude/sys/ttold.h
388 array.o: /usr/ucbinclude/sys/ttychars.h
389 array.o: /usr/ucbinclude/sys/ttycom.h
390 array.o: /usr/ucbinclude/sys/ttydev.h
391 array.o: /usr/ucbinclude/sys/types.h
392 array.o: /usr/ucbinclude/time.h
393 array.o: /usr/ucbinclude/vm/faultcode.h
394 array.o: EXTERN.h
395 array.o: arg.h
396 array.o: array.c
397 array.o: array.h
398 array.o: cmd.h
399 array.o: config.h
400 array.o: embed.h
401 array.o: form.h
402 array.o: handy.h
403 array.o: hash.h
404 array.o: perl.h
405 array.o: regexp.h
406 array.o: spat.h
407 array.o: stab.h
408 array.o: str.h
409 array.o: unixish.h
410 array.o: util.h
411 cmd.o: 
412 cmd.o: /usr/ucbinclude/ctype.h
413 cmd.o: /usr/ucbinclude/dirent.h
414 cmd.o: /usr/ucbinclude/errno.h
415 cmd.o: /usr/ucbinclude/machine/param.h
416 cmd.o: /usr/ucbinclude/machine/setjmp.h
417 cmd.o: /usr/ucbinclude/ndbm.h
418 cmd.o: /usr/ucbinclude/netinet/in.h
419 cmd.o: /usr/ucbinclude/setjmp.h
420 cmd.o: /usr/ucbinclude/stdio.h
421 cmd.o: /usr/ucbinclude/sys/dirent.h
422 cmd.o: /usr/ucbinclude/sys/errno.h
423 cmd.o: /usr/ucbinclude/sys/filio.h
424 cmd.o: /usr/ucbinclude/sys/ioccom.h
425 cmd.o: /usr/ucbinclude/sys/ioctl.h
426 cmd.o: /usr/ucbinclude/sys/param.h
427 cmd.o: /usr/ucbinclude/sys/signal.h
428 cmd.o: /usr/ucbinclude/sys/sockio.h
429 cmd.o: /usr/ucbinclude/sys/stat.h
430 cmd.o: /usr/ucbinclude/sys/stdtypes.h
431 cmd.o: /usr/ucbinclude/sys/sysmacros.h
432 cmd.o: /usr/ucbinclude/sys/time.h
433 cmd.o: /usr/ucbinclude/sys/times.h
434 cmd.o: /usr/ucbinclude/sys/ttold.h
435 cmd.o: /usr/ucbinclude/sys/ttychars.h
436 cmd.o: /usr/ucbinclude/sys/ttycom.h
437 cmd.o: /usr/ucbinclude/sys/ttydev.h
438 cmd.o: /usr/ucbinclude/sys/types.h
439 cmd.o: /usr/ucbinclude/time.h
440 cmd.o: /usr/ucbinclude/varargs.h
441 cmd.o: /usr/ucbinclude/vm/faultcode.h
442 cmd.o: EXTERN.h
443 cmd.o: arg.h
444 cmd.o: array.h
445 cmd.o: cmd.c
446 cmd.o: cmd.h
447 cmd.o: config.h
448 cmd.o: embed.h
449 cmd.o: form.h
450 cmd.o: handy.h
451 cmd.o: hash.h
452 cmd.o: perl.h
453 cmd.o: regexp.h
454 cmd.o: spat.h
455 cmd.o: stab.h
456 cmd.o: str.h
457 cmd.o: unixish.h
458 cmd.o: util.h
459 cons.o: 
460 cons.o: /usr/ucbinclude/ctype.h
461 cons.o: /usr/ucbinclude/dirent.h
462 cons.o: /usr/ucbinclude/errno.h
463 cons.o: /usr/ucbinclude/machine/param.h
464 cons.o: /usr/ucbinclude/machine/setjmp.h
465 cons.o: /usr/ucbinclude/ndbm.h
466 cons.o: /usr/ucbinclude/netinet/in.h
467 cons.o: /usr/ucbinclude/setjmp.h
468 cons.o: /usr/ucbinclude/stdio.h
469 cons.o: /usr/ucbinclude/sys/dirent.h
470 cons.o: /usr/ucbinclude/sys/errno.h
471 cons.o: /usr/ucbinclude/sys/filio.h
472 cons.o: /usr/ucbinclude/sys/ioccom.h
473 cons.o: /usr/ucbinclude/sys/ioctl.h
474 cons.o: /usr/ucbinclude/sys/param.h
475 cons.o: /usr/ucbinclude/sys/signal.h
476 cons.o: /usr/ucbinclude/sys/sockio.h
477 cons.o: /usr/ucbinclude/sys/stat.h
478 cons.o: /usr/ucbinclude/sys/stdtypes.h
479 cons.o: /usr/ucbinclude/sys/sysmacros.h
480 cons.o: /usr/ucbinclude/sys/time.h
481 cons.o: /usr/ucbinclude/sys/times.h
482 cons.o: /usr/ucbinclude/sys/ttold.h
483 cons.o: /usr/ucbinclude/sys/ttychars.h
484 cons.o: /usr/ucbinclude/sys/ttycom.h
485 cons.o: /usr/ucbinclude/sys/ttydev.h
486 cons.o: /usr/ucbinclude/sys/types.h
487 cons.o: /usr/ucbinclude/time.h
488 cons.o: /usr/ucbinclude/vm/faultcode.h
489 cons.o: EXTERN.h
490 cons.o: arg.h
491 cons.o: array.h
492 cons.o: cmd.h
493 cons.o: config.h
494 cons.o: cons.c
495 cons.o: embed.h
496 cons.o: form.h
497 cons.o: handy.h
498 cons.o: hash.h
499 cons.o: perl.h
500 cons.o: perly.h
501 cons.o: regexp.h
502 cons.o: spat.h
503 cons.o: stab.h
504 cons.o: str.h
505 cons.o: unixish.h
506 cons.o: util.h
507 consarg.o: 
508 consarg.o: /usr/ucbinclude/ctype.h
509 consarg.o: /usr/ucbinclude/dirent.h
510 consarg.o: /usr/ucbinclude/errno.h
511 consarg.o: /usr/ucbinclude/machine/param.h
512 consarg.o: /usr/ucbinclude/machine/setjmp.h
513 consarg.o: /usr/ucbinclude/ndbm.h
514 consarg.o: /usr/ucbinclude/netinet/in.h
515 consarg.o: /usr/ucbinclude/setjmp.h
516 consarg.o: /usr/ucbinclude/stdio.h
517 consarg.o: /usr/ucbinclude/sys/dirent.h
518 consarg.o: /usr/ucbinclude/sys/errno.h
519 consarg.o: /usr/ucbinclude/sys/filio.h
520 consarg.o: /usr/ucbinclude/sys/ioccom.h
521 consarg.o: /usr/ucbinclude/sys/ioctl.h
522 consarg.o: /usr/ucbinclude/sys/param.h
523 consarg.o: /usr/ucbinclude/sys/signal.h
524 consarg.o: /usr/ucbinclude/sys/sockio.h
525 consarg.o: /usr/ucbinclude/sys/stat.h
526 consarg.o: /usr/ucbinclude/sys/stdtypes.h
527 consarg.o: /usr/ucbinclude/sys/sysmacros.h
528 consarg.o: /usr/ucbinclude/sys/time.h
529 consarg.o: /usr/ucbinclude/sys/times.h
530 consarg.o: /usr/ucbinclude/sys/ttold.h
531 consarg.o: /usr/ucbinclude/sys/ttychars.h
532 consarg.o: /usr/ucbinclude/sys/ttycom.h
533 consarg.o: /usr/ucbinclude/sys/ttydev.h
534 consarg.o: /usr/ucbinclude/sys/types.h
535 consarg.o: /usr/ucbinclude/time.h
536 consarg.o: /usr/ucbinclude/vm/faultcode.h
537 consarg.o: EXTERN.h
538 consarg.o: arg.h
539 consarg.o: array.h
540 consarg.o: cmd.h
541 consarg.o: config.h
542 consarg.o: consarg.c
543 consarg.o: embed.h
544 consarg.o: form.h
545 consarg.o: handy.h
546 consarg.o: hash.h
547 consarg.o: perl.h
548 consarg.o: regexp.h
549 consarg.o: spat.h
550 consarg.o: stab.h
551 consarg.o: str.h
552 consarg.o: unixish.h
553 consarg.o: util.h
554 doarg.o: 
555 doarg.o: /usr/ucbinclude/ctype.h
556 doarg.o: /usr/ucbinclude/dirent.h
557 doarg.o: /usr/ucbinclude/errno.h
558 doarg.o: /usr/ucbinclude/machine/param.h
559 doarg.o: /usr/ucbinclude/machine/setjmp.h
560 doarg.o: /usr/ucbinclude/ndbm.h
561 doarg.o: /usr/ucbinclude/netinet/in.h
562 doarg.o: /usr/ucbinclude/setjmp.h
563 doarg.o: /usr/ucbinclude/stdio.h
564 doarg.o: /usr/ucbinclude/sys/dirent.h
565 doarg.o: /usr/ucbinclude/sys/errno.h
566 doarg.o: /usr/ucbinclude/sys/filio.h
567 doarg.o: /usr/ucbinclude/sys/ioccom.h
568 doarg.o: /usr/ucbinclude/sys/ioctl.h
569 doarg.o: /usr/ucbinclude/sys/param.h
570 doarg.o: /usr/ucbinclude/sys/signal.h
571 doarg.o: /usr/ucbinclude/sys/sockio.h
572 doarg.o: /usr/ucbinclude/sys/stat.h
573 doarg.o: /usr/ucbinclude/sys/stdtypes.h
574 doarg.o: /usr/ucbinclude/sys/sysmacros.h
575 doarg.o: /usr/ucbinclude/sys/time.h
576 doarg.o: /usr/ucbinclude/sys/times.h
577 doarg.o: /usr/ucbinclude/sys/ttold.h
578 doarg.o: /usr/ucbinclude/sys/ttychars.h
579 doarg.o: /usr/ucbinclude/sys/ttycom.h
580 doarg.o: /usr/ucbinclude/sys/ttydev.h
581 doarg.o: /usr/ucbinclude/sys/types.h
582 doarg.o: /usr/ucbinclude/time.h
583 doarg.o: /usr/ucbinclude/vm/faultcode.h
584 doarg.o: EXTERN.h
585 doarg.o: arg.h
586 doarg.o: array.h
587 doarg.o: cmd.h
588 doarg.o: config.h
589 doarg.o: doarg.c
590 doarg.o: embed.h
591 doarg.o: form.h
592 doarg.o: handy.h
593 doarg.o: hash.h
594 doarg.o: perl.h
595 doarg.o: regexp.h
596 doarg.o: spat.h
597 doarg.o: stab.h
598 doarg.o: str.h
599 doarg.o: unixish.h
600 doarg.o: util.h
601 doio.o: 
602 doio.o: /usr/ucbinclude/ctype.h
603 doio.o: /usr/ucbinclude/debug/debug.h
604 doio.o: /usr/ucbinclude/dirent.h
605 doio.o: /usr/ucbinclude/errno.h
606 doio.o: /usr/ucbinclude/grp.h
607 doio.o: /usr/ucbinclude/machine/mmu.h
608 doio.o: /usr/ucbinclude/machine/param.h
609 doio.o: /usr/ucbinclude/machine/setjmp.h
610 doio.o: /usr/ucbinclude/mon/obpdefs.h
611 doio.o: /usr/ucbinclude/mon/openprom.h
612 doio.o: /usr/ucbinclude/mon/sunromvec.h
613 doio.o: /usr/ucbinclude/ndbm.h
614 doio.o: /usr/ucbinclude/netdb.h
615 doio.o: /usr/ucbinclude/netinet/in.h
616 doio.o: /usr/ucbinclude/pwd.h
617 doio.o: /usr/ucbinclude/setjmp.h
618 doio.o: /usr/ucbinclude/stdio.h
619 doio.o: /usr/ucbinclude/sys/dirent.h
620 doio.o: /usr/ucbinclude/sys/errno.h
621 doio.o: /usr/ucbinclude/sys/fcntlcom.h
622 doio.o: /usr/ucbinclude/sys/file.h
623 doio.o: /usr/ucbinclude/sys/filio.h
624 doio.o: /usr/ucbinclude/sys/ioccom.h
625 doio.o: /usr/ucbinclude/sys/ioctl.h
626 doio.o: /usr/ucbinclude/sys/ipc.h
627 doio.o: /usr/ucbinclude/sys/msg.h
628 doio.o: /usr/ucbinclude/sys/param.h
629 doio.o: /usr/ucbinclude/sys/sem.h
630 doio.o: /usr/ucbinclude/sys/shm.h
631 doio.o: /usr/ucbinclude/sys/signal.h
632 doio.o: /usr/ucbinclude/sys/socket.h
633 doio.o: /usr/ucbinclude/sys/sockio.h
634 doio.o: /usr/ucbinclude/sys/stat.h
635 doio.o: /usr/ucbinclude/sys/stdtypes.h
636 doio.o: /usr/ucbinclude/sys/sysmacros.h
637 doio.o: /usr/ucbinclude/sys/time.h
638 doio.o: /usr/ucbinclude/sys/times.h
639 doio.o: /usr/ucbinclude/sys/ttold.h
640 doio.o: /usr/ucbinclude/sys/ttychars.h
641 doio.o: /usr/ucbinclude/sys/ttycom.h
642 doio.o: /usr/ucbinclude/sys/ttydev.h
643 doio.o: /usr/ucbinclude/sys/types.h
644 doio.o: /usr/ucbinclude/time.h
645 doio.o: /usr/ucbinclude/utime.h
646 doio.o: /usr/ucbinclude/vm/faultcode.h
647 doio.o: EXTERN.h
648 doio.o: arg.h
649 doio.o: array.h
650 doio.o: cmd.h
651 doio.o: config.h
652 doio.o: doio.c
653 doio.o: embed.h
654 doio.o: form.h
655 doio.o: handy.h
656 doio.o: hash.h
657 doio.o: perl.h
658 doio.o: regexp.h
659 doio.o: spat.h
660 doio.o: stab.h
661 doio.o: str.h
662 doio.o: unixish.h
663 doio.o: util.h
664 dolist.o: 
665 dolist.o: /usr/ucbinclude/ctype.h
666 dolist.o: /usr/ucbinclude/dirent.h
667 dolist.o: /usr/ucbinclude/errno.h
668 dolist.o: /usr/ucbinclude/machine/param.h
669 dolist.o: /usr/ucbinclude/machine/setjmp.h
670 dolist.o: /usr/ucbinclude/ndbm.h
671 dolist.o: /usr/ucbinclude/netinet/in.h
672 dolist.o: /usr/ucbinclude/setjmp.h
673 dolist.o: /usr/ucbinclude/stdio.h
674 dolist.o: /usr/ucbinclude/sys/dirent.h
675 dolist.o: /usr/ucbinclude/sys/errno.h
676 dolist.o: /usr/ucbinclude/sys/filio.h
677 dolist.o: /usr/ucbinclude/sys/ioccom.h
678 dolist.o: /usr/ucbinclude/sys/ioctl.h
679 dolist.o: /usr/ucbinclude/sys/param.h
680 dolist.o: /usr/ucbinclude/sys/signal.h
681 dolist.o: /usr/ucbinclude/sys/sockio.h
682 dolist.o: /usr/ucbinclude/sys/stat.h
683 dolist.o: /usr/ucbinclude/sys/stdtypes.h
684 dolist.o: /usr/ucbinclude/sys/sysmacros.h
685 dolist.o: /usr/ucbinclude/sys/time.h
686 dolist.o: /usr/ucbinclude/sys/times.h
687 dolist.o: /usr/ucbinclude/sys/ttold.h
688 dolist.o: /usr/ucbinclude/sys/ttychars.h
689 dolist.o: /usr/ucbinclude/sys/ttycom.h
690 dolist.o: /usr/ucbinclude/sys/ttydev.h
691 dolist.o: /usr/ucbinclude/sys/types.h
692 dolist.o: /usr/ucbinclude/time.h
693 dolist.o: /usr/ucbinclude/vm/faultcode.h
694 dolist.o: EXTERN.h
695 dolist.o: arg.h
696 dolist.o: array.h
697 dolist.o: cmd.h
698 dolist.o: config.h
699 dolist.o: dolist.c
700 dolist.o: embed.h
701 dolist.o: form.h
702 dolist.o: handy.h
703 dolist.o: hash.h
704 dolist.o: perl.h
705 dolist.o: regexp.h
706 dolist.o: spat.h
707 dolist.o: stab.h
708 dolist.o: str.h
709 dolist.o: unixish.h
710 dolist.o: util.h
711 dump.o: 
712 dump.o: /usr/ucbinclude/ctype.h
713 dump.o: /usr/ucbinclude/dirent.h
714 dump.o: /usr/ucbinclude/errno.h
715 dump.o: /usr/ucbinclude/machine/param.h
716 dump.o: /usr/ucbinclude/machine/setjmp.h
717 dump.o: /usr/ucbinclude/ndbm.h
718 dump.o: /usr/ucbinclude/netinet/in.h
719 dump.o: /usr/ucbinclude/setjmp.h
720 dump.o: /usr/ucbinclude/stdio.h
721 dump.o: /usr/ucbinclude/sys/dirent.h
722 dump.o: /usr/ucbinclude/sys/errno.h
723 dump.o: /usr/ucbinclude/sys/filio.h
724 dump.o: /usr/ucbinclude/sys/ioccom.h
725 dump.o: /usr/ucbinclude/sys/ioctl.h
726 dump.o: /usr/ucbinclude/sys/param.h
727 dump.o: /usr/ucbinclude/sys/signal.h
728 dump.o: /usr/ucbinclude/sys/sockio.h
729 dump.o: /usr/ucbinclude/sys/stat.h
730 dump.o: /usr/ucbinclude/sys/stdtypes.h
731 dump.o: /usr/ucbinclude/sys/sysmacros.h
732 dump.o: /usr/ucbinclude/sys/time.h
733 dump.o: /usr/ucbinclude/sys/times.h
734 dump.o: /usr/ucbinclude/sys/ttold.h
735 dump.o: /usr/ucbinclude/sys/ttychars.h
736 dump.o: /usr/ucbinclude/sys/ttycom.h
737 dump.o: /usr/ucbinclude/sys/ttydev.h
738 dump.o: /usr/ucbinclude/sys/types.h
739 dump.o: /usr/ucbinclude/time.h
740 dump.o: /usr/ucbinclude/vm/faultcode.h
741 dump.o: EXTERN.h
742 dump.o: arg.h
743 dump.o: array.h
744 dump.o: cmd.h
745 dump.o: config.h
746 dump.o: dump.c
747 dump.o: embed.h
748 dump.o: form.h
749 dump.o: handy.h
750 dump.o: hash.h
751 dump.o: perl.h
752 dump.o: regexp.h
753 dump.o: spat.h
754 dump.o: stab.h
755 dump.o: str.h
756 dump.o: unixish.h
757 dump.o: util.h
758 eval.o: 
759 eval.o: /usr/ucbinclude/ctype.h
760 eval.o: /usr/ucbinclude/dirent.h
761 eval.o: /usr/ucbinclude/errno.h
762 eval.o: /usr/ucbinclude/machine/param.h
763 eval.o: /usr/ucbinclude/machine/setjmp.h
764 eval.o: /usr/ucbinclude/ndbm.h
765 eval.o: /usr/ucbinclude/netinet/in.h
766 eval.o: /usr/ucbinclude/setjmp.h
767 eval.o: /usr/ucbinclude/stdio.h
768 eval.o: /usr/ucbinclude/sys/dirent.h
769 eval.o: /usr/ucbinclude/sys/errno.h
770 eval.o: /usr/ucbinclude/sys/fcntlcom.h
771 eval.o: /usr/ucbinclude/sys/file.h
772 eval.o: /usr/ucbinclude/sys/filio.h
773 eval.o: /usr/ucbinclude/sys/ioccom.h
774 eval.o: /usr/ucbinclude/sys/ioctl.h
775 eval.o: /usr/ucbinclude/sys/param.h
776 eval.o: /usr/ucbinclude/sys/signal.h
777 eval.o: /usr/ucbinclude/sys/sockio.h
778 eval.o: /usr/ucbinclude/sys/stat.h
779 eval.o: /usr/ucbinclude/sys/stdtypes.h
780 eval.o: /usr/ucbinclude/sys/sysmacros.h
781 eval.o: /usr/ucbinclude/sys/time.h
782 eval.o: /usr/ucbinclude/sys/times.h
783 eval.o: /usr/ucbinclude/sys/ttold.h
784 eval.o: /usr/ucbinclude/sys/ttychars.h
785 eval.o: /usr/ucbinclude/sys/ttycom.h
786 eval.o: /usr/ucbinclude/sys/ttydev.h
787 eval.o: /usr/ucbinclude/sys/types.h
788 eval.o: /usr/ucbinclude/time.h
789 eval.o: /usr/ucbinclude/vfork.h
790 eval.o: /usr/ucbinclude/vm/faultcode.h
791 eval.o: EXTERN.h
792 eval.o: arg.h
793 eval.o: array.h
794 eval.o: cmd.h
795 eval.o: config.h
796 eval.o: embed.h
797 eval.o: eval.c
798 eval.o: form.h
799 eval.o: handy.h
800 eval.o: hash.h
801 eval.o: perl.h
802 eval.o: regexp.h
803 eval.o: spat.h
804 eval.o: stab.h
805 eval.o: str.h
806 eval.o: unixish.h
807 eval.o: util.h
808 form.o: 
809 form.o: /usr/ucbinclude/ctype.h
810 form.o: /usr/ucbinclude/dirent.h
811 form.o: /usr/ucbinclude/errno.h
812 form.o: /usr/ucbinclude/machine/param.h
813 form.o: /usr/ucbinclude/machine/setjmp.h
814 form.o: /usr/ucbinclude/ndbm.h
815 form.o: /usr/ucbinclude/netinet/in.h
816 form.o: /usr/ucbinclude/setjmp.h
817 form.o: /usr/ucbinclude/stdio.h
818 form.o: /usr/ucbinclude/sys/dirent.h
819 form.o: /usr/ucbinclude/sys/errno.h
820 form.o: /usr/ucbinclude/sys/filio.h
821 form.o: /usr/ucbinclude/sys/ioccom.h
822 form.o: /usr/ucbinclude/sys/ioctl.h
823 form.o: /usr/ucbinclude/sys/param.h
824 form.o: /usr/ucbinclude/sys/signal.h
825 form.o: /usr/ucbinclude/sys/sockio.h
826 form.o: /usr/ucbinclude/sys/stat.h
827 form.o: /usr/ucbinclude/sys/stdtypes.h
828 form.o: /usr/ucbinclude/sys/sysmacros.h
829 form.o: /usr/ucbinclude/sys/time.h
830 form.o: /usr/ucbinclude/sys/times.h
831 form.o: /usr/ucbinclude/sys/ttold.h
832 form.o: /usr/ucbinclude/sys/ttychars.h
833 form.o: /usr/ucbinclude/sys/ttycom.h
834 form.o: /usr/ucbinclude/sys/ttydev.h
835 form.o: /usr/ucbinclude/sys/types.h
836 form.o: /usr/ucbinclude/time.h
837 form.o: /usr/ucbinclude/vm/faultcode.h
838 form.o: EXTERN.h
839 form.o: arg.h
840 form.o: array.h
841 form.o: cmd.h
842 form.o: config.h
843 form.o: embed.h
844 form.o: form.c
845 form.o: form.h
846 form.o: handy.h
847 form.o: hash.h
848 form.o: perl.h
849 form.o: regexp.h
850 form.o: spat.h
851 form.o: stab.h
852 form.o: str.h
853 form.o: unixish.h
854 form.o: util.h
855 hash.o: 
856 hash.o: /usr/ucbinclude/ctype.h
857 hash.o: /usr/ucbinclude/dirent.h
858 hash.o: /usr/ucbinclude/errno.h
859 hash.o: /usr/ucbinclude/machine/param.h
860 hash.o: /usr/ucbinclude/machine/setjmp.h
861 hash.o: /usr/ucbinclude/ndbm.h
862 hash.o: /usr/ucbinclude/netinet/in.h
863 hash.o: /usr/ucbinclude/setjmp.h
864 hash.o: /usr/ucbinclude/stdio.h
865 hash.o: /usr/ucbinclude/sys/dirent.h
866 hash.o: /usr/ucbinclude/sys/errno.h
867 hash.o: /usr/ucbinclude/sys/fcntlcom.h
868 hash.o: /usr/ucbinclude/sys/file.h
869 hash.o: /usr/ucbinclude/sys/filio.h
870 hash.o: /usr/ucbinclude/sys/ioccom.h
871 hash.o: /usr/ucbinclude/sys/ioctl.h
872 hash.o: /usr/ucbinclude/sys/param.h
873 hash.o: /usr/ucbinclude/sys/signal.h
874 hash.o: /usr/ucbinclude/sys/sockio.h
875 hash.o: /usr/ucbinclude/sys/stat.h
876 hash.o: /usr/ucbinclude/sys/stdtypes.h
877 hash.o: /usr/ucbinclude/sys/sysmacros.h
878 hash.o: /usr/ucbinclude/sys/time.h
879 hash.o: /usr/ucbinclude/sys/times.h
880 hash.o: /usr/ucbinclude/sys/ttold.h
881 hash.o: /usr/ucbinclude/sys/ttychars.h
882 hash.o: /usr/ucbinclude/sys/ttycom.h
883 hash.o: /usr/ucbinclude/sys/ttydev.h
884 hash.o: /usr/ucbinclude/sys/types.h
885 hash.o: /usr/ucbinclude/time.h
886 hash.o: /usr/ucbinclude/vm/faultcode.h
887 hash.o: EXTERN.h
888 hash.o: arg.h
889 hash.o: array.h
890 hash.o: cmd.h
891 hash.o: config.h
892 hash.o: embed.h
893 hash.o: form.h
894 hash.o: handy.h
895 hash.o: hash.c
896 hash.o: hash.h
897 hash.o: perl.h
898 hash.o: regexp.h
899 hash.o: spat.h
900 hash.o: stab.h
901 hash.o: str.h
902 hash.o: unixish.h
903 hash.o: util.h
904 main.o: 
905 main.o: /usr/ucbinclude/ctype.h
906 main.o: /usr/ucbinclude/dirent.h
907 main.o: /usr/ucbinclude/errno.h
908 main.o: /usr/ucbinclude/machine/param.h
909 main.o: /usr/ucbinclude/machine/setjmp.h
910 main.o: /usr/ucbinclude/ndbm.h
911 main.o: /usr/ucbinclude/netinet/in.h
912 main.o: /usr/ucbinclude/setjmp.h
913 main.o: /usr/ucbinclude/stdio.h
914 main.o: /usr/ucbinclude/sys/dirent.h
915 main.o: /usr/ucbinclude/sys/errno.h
916 main.o: /usr/ucbinclude/sys/filio.h
917 main.o: /usr/ucbinclude/sys/ioccom.h
918 main.o: /usr/ucbinclude/sys/ioctl.h
919 main.o: /usr/ucbinclude/sys/param.h
920 main.o: /usr/ucbinclude/sys/signal.h
921 main.o: /usr/ucbinclude/sys/sockio.h
922 main.o: /usr/ucbinclude/sys/stat.h
923 main.o: /usr/ucbinclude/sys/stdtypes.h
924 main.o: /usr/ucbinclude/sys/sysmacros.h
925 main.o: /usr/ucbinclude/sys/time.h
926 main.o: /usr/ucbinclude/sys/times.h
927 main.o: /usr/ucbinclude/sys/ttold.h
928 main.o: /usr/ucbinclude/sys/ttychars.h
929 main.o: /usr/ucbinclude/sys/ttycom.h
930 main.o: /usr/ucbinclude/sys/ttydev.h
931 main.o: /usr/ucbinclude/sys/types.h
932 main.o: /usr/ucbinclude/time.h
933 main.o: /usr/ucbinclude/vm/faultcode.h
934 main.o: INTERN.h
935 main.o: arg.h
936 main.o: array.h
937 main.o: cmd.h
938 main.o: config.h
939 main.o: embed.h
940 main.o: form.h
941 main.o: handy.h
942 main.o: hash.h
943 main.o: main.c
944 main.o: perl.h
945 main.o: regexp.h
946 main.o: spat.h
947 main.o: stab.h
948 main.o: str.h
949 main.o: unixish.h
950 main.o: util.h
951 malloc.o: 
952 malloc.o: /usr/ucbinclude/ctype.h
953 malloc.o: /usr/ucbinclude/dirent.h
954 malloc.o: /usr/ucbinclude/errno.h
955 malloc.o: /usr/ucbinclude/machine/param.h
956 malloc.o: /usr/ucbinclude/machine/setjmp.h
957 malloc.o: /usr/ucbinclude/ndbm.h
958 malloc.o: /usr/ucbinclude/netinet/in.h
959 malloc.o: /usr/ucbinclude/setjmp.h
960 malloc.o: /usr/ucbinclude/stdio.h
961 malloc.o: /usr/ucbinclude/sys/dirent.h
962 malloc.o: /usr/ucbinclude/sys/errno.h
963 malloc.o: /usr/ucbinclude/sys/filio.h
964 malloc.o: /usr/ucbinclude/sys/ioccom.h
965 malloc.o: /usr/ucbinclude/sys/ioctl.h
966 malloc.o: /usr/ucbinclude/sys/param.h
967 malloc.o: /usr/ucbinclude/sys/signal.h
968 malloc.o: /usr/ucbinclude/sys/sockio.h
969 malloc.o: /usr/ucbinclude/sys/stat.h
970 malloc.o: /usr/ucbinclude/sys/stdtypes.h
971 malloc.o: /usr/ucbinclude/sys/sysmacros.h
972 malloc.o: /usr/ucbinclude/sys/time.h
973 malloc.o: /usr/ucbinclude/sys/times.h
974 malloc.o: /usr/ucbinclude/sys/ttold.h
975 malloc.o: /usr/ucbinclude/sys/ttychars.h
976 malloc.o: /usr/ucbinclude/sys/ttycom.h
977 malloc.o: /usr/ucbinclude/sys/ttydev.h
978 malloc.o: /usr/ucbinclude/sys/types.h
979 malloc.o: /usr/ucbinclude/time.h
980 malloc.o: /usr/ucbinclude/vm/faultcode.h
981 malloc.o: EXTERN.h
982 malloc.o: arg.h
983 malloc.o: array.h
984 malloc.o: cmd.h
985 malloc.o: config.h
986 malloc.o: embed.h
987 malloc.o: form.h
988 malloc.o: handy.h
989 malloc.o: hash.h
990 malloc.o: malloc.c
991 malloc.o: perl.h
992 malloc.o: regexp.h
993 malloc.o: spat.h
994 malloc.o: stab.h
995 malloc.o: str.h
996 malloc.o: unixish.h
997 malloc.o: util.h
998 perl.o: 
999 perl.o: /usr/ucbinclude/ctype.h
1000 perl.o: /usr/ucbinclude/dirent.h
1001 perl.o: /usr/ucbinclude/errno.h
1002 perl.o: /usr/ucbinclude/machine/param.h
1003 perl.o: /usr/ucbinclude/machine/setjmp.h
1004 perl.o: /usr/ucbinclude/ndbm.h
1005 perl.o: /usr/ucbinclude/netinet/in.h
1006 perl.o: /usr/ucbinclude/setjmp.h
1007 perl.o: /usr/ucbinclude/stdio.h
1008 perl.o: /usr/ucbinclude/sys/dirent.h
1009 perl.o: /usr/ucbinclude/sys/errno.h
1010 perl.o: /usr/ucbinclude/sys/filio.h
1011 perl.o: /usr/ucbinclude/sys/ioccom.h
1012 perl.o: /usr/ucbinclude/sys/ioctl.h
1013 perl.o: /usr/ucbinclude/sys/param.h
1014 perl.o: /usr/ucbinclude/sys/signal.h
1015 perl.o: /usr/ucbinclude/sys/sockio.h
1016 perl.o: /usr/ucbinclude/sys/stat.h
1017 perl.o: /usr/ucbinclude/sys/stdtypes.h
1018 perl.o: /usr/ucbinclude/sys/sysmacros.h
1019 perl.o: /usr/ucbinclude/sys/time.h
1020 perl.o: /usr/ucbinclude/sys/times.h
1021 perl.o: /usr/ucbinclude/sys/ttold.h
1022 perl.o: /usr/ucbinclude/sys/ttychars.h
1023 perl.o: /usr/ucbinclude/sys/ttycom.h
1024 perl.o: /usr/ucbinclude/sys/ttydev.h
1025 perl.o: /usr/ucbinclude/sys/types.h
1026 perl.o: /usr/ucbinclude/time.h
1027 perl.o: /usr/ucbinclude/vm/faultcode.h
1028 perl.o: EXTERN.h
1029 perl.o: arg.h
1030 perl.o: array.h
1031 perl.o: cmd.h
1032 perl.o: config.h
1033 perl.o: embed.h
1034 perl.o: form.h
1035 perl.o: handy.h
1036 perl.o: hash.h
1037 perl.o: patchlevel.h
1038 perl.o: perl.c
1039 perl.o: perl.h
1040 perl.o: perly.h
1041 perl.o: regexp.h
1042 perl.o: spat.h
1043 perl.o: stab.h
1044 perl.o: str.h
1045 perl.o: unixish.h
1046 perl.o: util.h
1047 pp.o: EXTERN.h
1048 pp.o: arg.h
1049 pp.o: array.h
1050 pp.o: cmd.h
1051 pp.o: config.h
1052 pp.o: embed.h
1053 pp.o: pp.c
1054 pp.o: pp.h
1055 pp.o: form.h
1056 pp.o: handy.h
1057 pp.o: hash.h
1058 pp.o: perl.h
1059 pp.o: regexp.h
1060 pp.o: spat.h
1061 pp.o: stab.h
1062 pp.o: str.h
1063 pp.o: unixish.h
1064 pp.o: util.h
1065 regcomp.o: 
1066 regcomp.o: /usr/ucbinclude/ctype.h
1067 regcomp.o: /usr/ucbinclude/dirent.h
1068 regcomp.o: /usr/ucbinclude/errno.h
1069 regcomp.o: /usr/ucbinclude/machine/param.h
1070 regcomp.o: /usr/ucbinclude/machine/setjmp.h
1071 regcomp.o: /usr/ucbinclude/ndbm.h
1072 regcomp.o: /usr/ucbinclude/netinet/in.h
1073 regcomp.o: /usr/ucbinclude/setjmp.h
1074 regcomp.o: /usr/ucbinclude/stdio.h
1075 regcomp.o: /usr/ucbinclude/sys/dirent.h
1076 regcomp.o: /usr/ucbinclude/sys/errno.h
1077 regcomp.o: /usr/ucbinclude/sys/filio.h
1078 regcomp.o: /usr/ucbinclude/sys/ioccom.h
1079 regcomp.o: /usr/ucbinclude/sys/ioctl.h
1080 regcomp.o: /usr/ucbinclude/sys/param.h
1081 regcomp.o: /usr/ucbinclude/sys/signal.h
1082 regcomp.o: /usr/ucbinclude/sys/sockio.h
1083 regcomp.o: /usr/ucbinclude/sys/stat.h
1084 regcomp.o: /usr/ucbinclude/sys/stdtypes.h
1085 regcomp.o: /usr/ucbinclude/sys/sysmacros.h
1086 regcomp.o: /usr/ucbinclude/sys/time.h
1087 regcomp.o: /usr/ucbinclude/sys/times.h
1088 regcomp.o: /usr/ucbinclude/sys/ttold.h
1089 regcomp.o: /usr/ucbinclude/sys/ttychars.h
1090 regcomp.o: /usr/ucbinclude/sys/ttycom.h
1091 regcomp.o: /usr/ucbinclude/sys/ttydev.h
1092 regcomp.o: /usr/ucbinclude/sys/types.h
1093 regcomp.o: /usr/ucbinclude/time.h
1094 regcomp.o: /usr/ucbinclude/vm/faultcode.h
1095 regcomp.o: EXTERN.h
1096 regcomp.o: INTERN.h
1097 regcomp.o: arg.h
1098 regcomp.o: array.h
1099 regcomp.o: cmd.h
1100 regcomp.o: config.h
1101 regcomp.o: embed.h
1102 regcomp.o: form.h
1103 regcomp.o: handy.h
1104 regcomp.o: hash.h
1105 regcomp.o: perl.h
1106 regcomp.o: regcomp.c
1107 regcomp.o: regcomp.h
1108 regcomp.o: regexp.h
1109 regcomp.o: spat.h
1110 regcomp.o: stab.h
1111 regcomp.o: str.h
1112 regcomp.o: unixish.h
1113 regcomp.o: util.h
1114 regexec.o: 
1115 regexec.o: /usr/ucbinclude/ctype.h
1116 regexec.o: /usr/ucbinclude/dirent.h
1117 regexec.o: /usr/ucbinclude/errno.h
1118 regexec.o: /usr/ucbinclude/machine/param.h
1119 regexec.o: /usr/ucbinclude/machine/setjmp.h
1120 regexec.o: /usr/ucbinclude/ndbm.h
1121 regexec.o: /usr/ucbinclude/netinet/in.h
1122 regexec.o: /usr/ucbinclude/setjmp.h
1123 regexec.o: /usr/ucbinclude/stdio.h
1124 regexec.o: /usr/ucbinclude/sys/dirent.h
1125 regexec.o: /usr/ucbinclude/sys/errno.h
1126 regexec.o: /usr/ucbinclude/sys/filio.h
1127 regexec.o: /usr/ucbinclude/sys/ioccom.h
1128 regexec.o: /usr/ucbinclude/sys/ioctl.h
1129 regexec.o: /usr/ucbinclude/sys/param.h
1130 regexec.o: /usr/ucbinclude/sys/signal.h
1131 regexec.o: /usr/ucbinclude/sys/sockio.h
1132 regexec.o: /usr/ucbinclude/sys/stat.h
1133 regexec.o: /usr/ucbinclude/sys/stdtypes.h
1134 regexec.o: /usr/ucbinclude/sys/sysmacros.h
1135 regexec.o: /usr/ucbinclude/sys/time.h
1136 regexec.o: /usr/ucbinclude/sys/times.h
1137 regexec.o: /usr/ucbinclude/sys/ttold.h
1138 regexec.o: /usr/ucbinclude/sys/ttychars.h
1139 regexec.o: /usr/ucbinclude/sys/ttycom.h
1140 regexec.o: /usr/ucbinclude/sys/ttydev.h
1141 regexec.o: /usr/ucbinclude/sys/types.h
1142 regexec.o: /usr/ucbinclude/time.h
1143 regexec.o: /usr/ucbinclude/vm/faultcode.h
1144 regexec.o: EXTERN.h
1145 regexec.o: arg.h
1146 regexec.o: array.h
1147 regexec.o: cmd.h
1148 regexec.o: config.h
1149 regexec.o: embed.h
1150 regexec.o: form.h
1151 regexec.o: handy.h
1152 regexec.o: hash.h
1153 regexec.o: perl.h
1154 regexec.o: regcomp.h
1155 regexec.o: regexec.c
1156 regexec.o: regexp.h
1157 regexec.o: spat.h
1158 regexec.o: stab.h
1159 regexec.o: str.h
1160 regexec.o: unixish.h
1161 regexec.o: util.h
1162 stab.o: 
1163 stab.o: /usr/ucbinclude/ctype.h
1164 stab.o: /usr/ucbinclude/dirent.h
1165 stab.o: /usr/ucbinclude/errno.h
1166 stab.o: /usr/ucbinclude/machine/param.h
1167 stab.o: /usr/ucbinclude/machine/setjmp.h
1168 stab.o: /usr/ucbinclude/ndbm.h
1169 stab.o: /usr/ucbinclude/netinet/in.h
1170 stab.o: /usr/ucbinclude/setjmp.h
1171 stab.o: /usr/ucbinclude/stdio.h
1172 stab.o: /usr/ucbinclude/sys/dirent.h
1173 stab.o: /usr/ucbinclude/sys/errno.h
1174 stab.o: /usr/ucbinclude/sys/filio.h
1175 stab.o: /usr/ucbinclude/sys/ioccom.h
1176 stab.o: /usr/ucbinclude/sys/ioctl.h
1177 stab.o: /usr/ucbinclude/sys/param.h
1178 stab.o: /usr/ucbinclude/sys/signal.h
1179 stab.o: /usr/ucbinclude/sys/sockio.h
1180 stab.o: /usr/ucbinclude/sys/stat.h
1181 stab.o: /usr/ucbinclude/sys/stdtypes.h
1182 stab.o: /usr/ucbinclude/sys/sysmacros.h
1183 stab.o: /usr/ucbinclude/sys/time.h
1184 stab.o: /usr/ucbinclude/sys/times.h
1185 stab.o: /usr/ucbinclude/sys/ttold.h
1186 stab.o: /usr/ucbinclude/sys/ttychars.h
1187 stab.o: /usr/ucbinclude/sys/ttycom.h
1188 stab.o: /usr/ucbinclude/sys/ttydev.h
1189 stab.o: /usr/ucbinclude/sys/types.h
1190 stab.o: /usr/ucbinclude/time.h
1191 stab.o: /usr/ucbinclude/vm/faultcode.h
1192 stab.o: EXTERN.h
1193 stab.o: arg.h
1194 stab.o: array.h
1195 stab.o: cmd.h
1196 stab.o: config.h
1197 stab.o: embed.h
1198 stab.o: form.h
1199 stab.o: handy.h
1200 stab.o: hash.h
1201 stab.o: perl.h
1202 stab.o: regexp.h
1203 stab.o: spat.h
1204 stab.o: stab.c
1205 stab.o: stab.h
1206 stab.o: str.h
1207 stab.o: unixish.h
1208 stab.o: util.h
1209 str.o: 
1210 str.o: /usr/ucbinclude/ctype.h
1211 str.o: /usr/ucbinclude/dirent.h
1212 str.o: /usr/ucbinclude/errno.h
1213 str.o: /usr/ucbinclude/machine/param.h
1214 str.o: /usr/ucbinclude/machine/setjmp.h
1215 str.o: /usr/ucbinclude/ndbm.h
1216 str.o: /usr/ucbinclude/netinet/in.h
1217 str.o: /usr/ucbinclude/setjmp.h
1218 str.o: /usr/ucbinclude/stdio.h
1219 str.o: /usr/ucbinclude/sys/dirent.h
1220 str.o: /usr/ucbinclude/sys/errno.h
1221 str.o: /usr/ucbinclude/sys/filio.h
1222 str.o: /usr/ucbinclude/sys/ioccom.h
1223 str.o: /usr/ucbinclude/sys/ioctl.h
1224 str.o: /usr/ucbinclude/sys/param.h
1225 str.o: /usr/ucbinclude/sys/signal.h
1226 str.o: /usr/ucbinclude/sys/sockio.h
1227 str.o: /usr/ucbinclude/sys/stat.h
1228 str.o: /usr/ucbinclude/sys/stdtypes.h
1229 str.o: /usr/ucbinclude/sys/sysmacros.h
1230 str.o: /usr/ucbinclude/sys/time.h
1231 str.o: /usr/ucbinclude/sys/times.h
1232 str.o: /usr/ucbinclude/sys/ttold.h
1233 str.o: /usr/ucbinclude/sys/ttychars.h
1234 str.o: /usr/ucbinclude/sys/ttycom.h
1235 str.o: /usr/ucbinclude/sys/ttydev.h
1236 str.o: /usr/ucbinclude/sys/types.h
1237 str.o: /usr/ucbinclude/time.h
1238 str.o: /usr/ucbinclude/vm/faultcode.h
1239 str.o: EXTERN.h
1240 str.o: arg.h
1241 str.o: array.h
1242 str.o: cmd.h
1243 str.o: config.h
1244 str.o: embed.h
1245 str.o: form.h
1246 str.o: handy.h
1247 str.o: hash.h
1248 str.o: perl.h
1249 str.o: perly.h
1250 str.o: regexp.h
1251 str.o: spat.h
1252 str.o: stab.h
1253 str.o: str.c
1254 str.o: str.h
1255 str.o: unixish.h
1256 str.o: util.h
1257 toke.o: 
1258 toke.o: /usr/ucbinclude/ctype.h
1259 toke.o: /usr/ucbinclude/dirent.h
1260 toke.o: /usr/ucbinclude/errno.h
1261 toke.o: /usr/ucbinclude/machine/param.h
1262 toke.o: /usr/ucbinclude/machine/setjmp.h
1263 toke.o: /usr/ucbinclude/ndbm.h
1264 toke.o: /usr/ucbinclude/netinet/in.h
1265 toke.o: /usr/ucbinclude/setjmp.h
1266 toke.o: /usr/ucbinclude/stdio.h
1267 toke.o: /usr/ucbinclude/sys/dirent.h
1268 toke.o: /usr/ucbinclude/sys/errno.h
1269 toke.o: /usr/ucbinclude/sys/fcntlcom.h
1270 toke.o: /usr/ucbinclude/sys/file.h
1271 toke.o: /usr/ucbinclude/sys/filio.h
1272 toke.o: /usr/ucbinclude/sys/ioccom.h
1273 toke.o: /usr/ucbinclude/sys/ioctl.h
1274 toke.o: /usr/ucbinclude/sys/param.h
1275 toke.o: /usr/ucbinclude/sys/signal.h
1276 toke.o: /usr/ucbinclude/sys/sockio.h
1277 toke.o: /usr/ucbinclude/sys/stat.h
1278 toke.o: /usr/ucbinclude/sys/stdtypes.h
1279 toke.o: /usr/ucbinclude/sys/sysmacros.h
1280 toke.o: /usr/ucbinclude/sys/time.h
1281 toke.o: /usr/ucbinclude/sys/times.h
1282 toke.o: /usr/ucbinclude/sys/ttold.h
1283 toke.o: /usr/ucbinclude/sys/ttychars.h
1284 toke.o: /usr/ucbinclude/sys/ttycom.h
1285 toke.o: /usr/ucbinclude/sys/ttydev.h
1286 toke.o: /usr/ucbinclude/sys/types.h
1287 toke.o: /usr/ucbinclude/time.h
1288 toke.o: /usr/ucbinclude/vm/faultcode.h
1289 toke.o: EXTERN.h
1290 toke.o: arg.h
1291 toke.o: array.h
1292 toke.o: cmd.h
1293 toke.o: config.h
1294 toke.o: embed.h
1295 toke.o: form.h
1296 toke.o: handy.h
1297 toke.o: hash.h
1298 toke.o: keywords.h
1299 toke.o: perl.h
1300 toke.o: perly.h
1301 toke.o: regexp.h
1302 toke.o: spat.h
1303 toke.o: stab.h
1304 toke.o: str.h
1305 toke.o: toke.c
1306 toke.o: unixish.h
1307 toke.o: util.h
1308 util.o: 
1309 util.o: /usr/ucbinclude/ctype.h
1310 util.o: /usr/ucbinclude/dirent.h
1311 util.o: /usr/ucbinclude/errno.h
1312 util.o: /usr/ucbinclude/machine/param.h
1313 util.o: /usr/ucbinclude/machine/setjmp.h
1314 util.o: /usr/ucbinclude/ndbm.h
1315 util.o: /usr/ucbinclude/netinet/in.h
1316 util.o: /usr/ucbinclude/setjmp.h
1317 util.o: /usr/ucbinclude/stdio.h
1318 util.o: /usr/ucbinclude/sys/dirent.h
1319 util.o: /usr/ucbinclude/sys/errno.h
1320 util.o: /usr/ucbinclude/sys/fcntlcom.h
1321 util.o: /usr/ucbinclude/sys/file.h
1322 util.o: /usr/ucbinclude/sys/filio.h
1323 util.o: /usr/ucbinclude/sys/ioccom.h
1324 util.o: /usr/ucbinclude/sys/ioctl.h
1325 util.o: /usr/ucbinclude/sys/param.h
1326 util.o: /usr/ucbinclude/sys/signal.h
1327 util.o: /usr/ucbinclude/sys/sockio.h
1328 util.o: /usr/ucbinclude/sys/stat.h
1329 util.o: /usr/ucbinclude/sys/stdtypes.h
1330 util.o: /usr/ucbinclude/sys/sysmacros.h
1331 util.o: /usr/ucbinclude/sys/time.h
1332 util.o: /usr/ucbinclude/sys/times.h
1333 util.o: /usr/ucbinclude/sys/ttold.h
1334 util.o: /usr/ucbinclude/sys/ttychars.h
1335 util.o: /usr/ucbinclude/sys/ttycom.h
1336 util.o: /usr/ucbinclude/sys/ttydev.h
1337 util.o: /usr/ucbinclude/sys/types.h
1338 util.o: /usr/ucbinclude/time.h
1339 util.o: /usr/ucbinclude/varargs.h
1340 util.o: /usr/ucbinclude/vfork.h
1341 util.o: /usr/ucbinclude/vm/faultcode.h
1342 util.o: EXTERN.h
1343 util.o: arg.h
1344 util.o: array.h
1345 util.o: cmd.h
1346 util.o: config.h
1347 util.o: embed.h
1348 util.o: form.h
1349 util.o: handy.h
1350 util.o: hash.h
1351 util.o: perl.h
1352 util.o: regexp.h
1353 util.o: spat.h
1354 util.o: stab.h
1355 util.o: str.h
1356 util.o: unixish.h
1357 util.o: util.c
1358 util.o: util.h
1359 usersub.o: 
1360 usersub.o: /usr/ucbinclude/ctype.h
1361 usersub.o: /usr/ucbinclude/dirent.h
1362 usersub.o: /usr/ucbinclude/errno.h
1363 usersub.o: /usr/ucbinclude/machine/param.h
1364 usersub.o: /usr/ucbinclude/machine/setjmp.h
1365 usersub.o: /usr/ucbinclude/ndbm.h
1366 usersub.o: /usr/ucbinclude/netinet/in.h
1367 usersub.o: /usr/ucbinclude/setjmp.h
1368 usersub.o: /usr/ucbinclude/stdio.h
1369 usersub.o: /usr/ucbinclude/sys/dirent.h
1370 usersub.o: /usr/ucbinclude/sys/errno.h
1371 usersub.o: /usr/ucbinclude/sys/filio.h
1372 usersub.o: /usr/ucbinclude/sys/ioccom.h
1373 usersub.o: /usr/ucbinclude/sys/ioctl.h
1374 usersub.o: /usr/ucbinclude/sys/param.h
1375 usersub.o: /usr/ucbinclude/sys/signal.h
1376 usersub.o: /usr/ucbinclude/sys/sockio.h
1377 usersub.o: /usr/ucbinclude/sys/stat.h
1378 usersub.o: /usr/ucbinclude/sys/stdtypes.h
1379 usersub.o: /usr/ucbinclude/sys/sysmacros.h
1380 usersub.o: /usr/ucbinclude/sys/time.h
1381 usersub.o: /usr/ucbinclude/sys/times.h
1382 usersub.o: /usr/ucbinclude/sys/ttold.h
1383 usersub.o: /usr/ucbinclude/sys/ttychars.h
1384 usersub.o: /usr/ucbinclude/sys/ttycom.h
1385 usersub.o: /usr/ucbinclude/sys/ttydev.h
1386 usersub.o: /usr/ucbinclude/sys/types.h
1387 usersub.o: /usr/ucbinclude/time.h
1388 usersub.o: /usr/ucbinclude/vm/faultcode.h
1389 usersub.o: EXTERN.h
1390 usersub.o: arg.h
1391 usersub.o: array.h
1392 usersub.o: cmd.h
1393 usersub.o: config.h
1394 usersub.o: embed.h
1395 usersub.o: form.h
1396 usersub.o: handy.h
1397 usersub.o: hash.h
1398 usersub.o: perl.h
1399 usersub.o: regexp.h
1400 usersub.o: spat.h
1401 usersub.o: stab.h
1402 usersub.o: str.h
1403 usersub.o: unixish.h
1404 usersub.o: usersub.c
1405 usersub.o: util.h
1406 Makefile: Makefile.SH config.sh ; /bin/sh Makefile.SH
1407 makedepend: makedepend.SH config.sh ; /bin/sh makedepend.SH
1408 h2ph: h2ph.SH config.sh ; /bin/sh h2ph.SH
1409 # WARNING: Put nothing here or make depend will gobble it up!