Initial revision
[ssr] / StraySrc / Libraries / Steel / Makefile,fe1
1 #
2 # Makefile
3 #
4 # © 1998 Straylight/Edgeware
5 #
6
7 #----- Licensing note -------------------------------------------------------
8 #
9 # This makefile is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2, or (at your option)
12 # any later version.
13 #
14 # This makefile is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this makefile. If not, write to the Free Software Foundation,
21 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 #----- Compilation flags ----------------------------------------------------
24
25 # --- Uncomment to use the C4 tools ---
26
27 # OLD = o-
28
29 # --- C compilation ---
30
31 CC = $(OLD)cc -c -o $@
32 CFLAGS = -depend !Depend -throwback -ffah -Jlibs: -JC:
33 COMPILE = $(CC) $(CFLAGS)
34
35 # --- Assembling ---
36
37 AS = $(OLD)objasm -quit -to $@
38 ASFLAGS = -stamp -depend !Depend -throwback
39 ASSEMBLE = $(AS) $(ASFLAGS) -from
40
41 BAS = basasm
42
43 # --- Linking ---
44
45 LD = $(OLD)link -o $@
46 LD_APP = $(LD) -aif
47 LD_UTIL = $(LD) -bin -base 0
48 LD_MOD = $(LD) -bin -base 0
49 LD_BIN = $(LD) -bin -base 0
50 LD_DLL = $(LD) -rmf
51 LD_AOF = $(LD) -aof
52
53 # --- Making libraries ---
54
55 AR = $(OLD)libfile -o
56
57 CDLL = cdll
58
59 # --- Setting file types ---
60
61 SET_APP = SetType $@ FF8
62 SET_MOD = SetType $@ FFA
63 SET_UTIL = SetType $@ FFC
64 SET_DLL = SetType $@ FFD
65
66 # --- Other maintenance things ---
67
68 RM = ssrclean
69 INSTALL = inst
70 SETDATE = setdate
71 SQUEEZE = squeeze $@
72 DATE = %zdy %mo %ce%yr
73 MODDATE = %dy %m3 %ce%yr
74 CRIGHT = © %ce%yr Straylight
75 FIXLINK = fixlink $@
76
77 #----- Default rules --------------------------------------------------------
78
79 .SUFFIXES: .o .do .c .s .bs
80 .c.o:
81 $(COMPILE) $<
82 .s.o:
83 $(ASSEMBLE) $<
84 .c.do:
85 $(COMPILE) -zM -D_DLL $<
86 .s.do:
87 $(ASSEMBLE) $<
88 .bs.o:
89 $(BAS) $< $@
90
91 #----- Object files ---------------------------------------------------------
92
93 # --- Maintenance note ---
94 #
95 # The list of object files is duplicated. I don't really care, because I'm
96 # not expecting to have to fiddle with anything here. If you want anything
97 # changing, do it yourself. That's what Free software is about.
98
99 # --- Dynamic library components ---
100
101 DLLOBJ = \
102 do.bbc do.colourtran do.font do.interface do.os do.print \
103 do.sculptrix do.sprite do.wimpext do.wimp_dll \
104 do.buffer do.calltrace do.exception do.utils do.vsscanf \
105 do.akbd do.coords do.keystring \
106 do.alarm do.blinkc do.caretptr do.pointer do.visdelay \
107 do.event do.help do.pane do.wimpt do.win \
108 do.baricon do.ibicon do.listbox do.viewer \
109 do.buttons do.dbox do.fileicon do.nopoll do.saveas \
110 do.stddbox do.tcol do.werr \
111 do.choices do.prefs \
112 do.creator do.fontmenu do.menu do.tearoff libs:tearsupt.o.tearsupt \
113 do.msgs do.res do.resspr do.template \
114 do.fastMove do.flex_dll do.heap_dll do.mem \
115 do.xferrecv do.xfersend
116
117 # --- Static library components ---
118
119 STATOBJ = \
120 o.bbc o.colourtran o.font o.interface o.os o.print \
121 o.sculptrix o.sprite o.wimpext o.wimp_stat \
122 o.buffer o.calltrace o.exception o.utils o.vsscanf \
123 o.akbd o.coords o.keystring \
124 o.alarm o.blinkc o.caretptr o.pointer o.visdelay \
125 o.event o.help o.pane o.wimpt o.win \
126 o.baricon o.ibicon o.listbox o.viewer \
127 o.buttons o.dbox o.fileicon o.nopoll o.saveas \
128 o.stddbox o.tcol o.werr \
129 o.choices o.prefs \
130 o.crc o.crc32 \
131 o.creator o.fontmenu o.menu o.tearoff libs:tearsupt.o.tearsupt \
132 o.scroller o.xproginfo \
133 o.msgs o.res o.resspr o.template \
134 o.fastMove o.flex_stat o.heap_stat o.mem \
135 o.xferrecv o.xfersend
136
137 #----- Interface targets ----------------------------------------------------
138
139 # --- Main target ---
140
141 all: dll.Steel lib.steel lib.steeldll
142
143 # --- Installing the libraries ---
144
145 install: dll.Steel
146 cdir <SSR$DLLDir>.Straylight
147 $(INSTALL) dll.Steel <SSR$DLLDir>.Straylight
148
149 # --- Cleansing the build tree ---
150
151 clean:
152 -$(RM) o.* do.* lib.* dll.* dl.* ds.*
153
154 #----- Building the libraries -----------------------------------------------
155
156 # --- Static library ---
157
158 lib.steel: $(STATOBJ)
159 test -file lib.steel -exists -else "$(AR) -c lib.steel"
160 $(AR) -i lib.steel $?
161
162 # --- Dynamic library ---
163
164 do.steel: $(DLLOBJ)
165 test -file do.steel -exists -else "$(AR) -c do.steel"
166 $(AR) -i do.steel $?
167
168 lib.steeldll: ds.steel
169 $(AR) -c lib.steeldll ds.steel
170
171 dh.steel ds.steel: def.steel do.steel
172 $(CDLL) def.steel ds.steel dh.steel
173
174 DLL_LDADD = libs:o.swiv libs:o.dstubs libs:o.dlllib
175 dll.steel: dh.steel do.steel $(DLL_LDADD)
176 $(LD_DLL) dh.steel do.steel $(DLL_LDADD)
177 $(SET_DLL)
178
179 #----- Dynamic dependencies -------------------------------------------------
180
181 # Dynamic dependencies:
182 o.bbc: s.bbc
183 o.bbc: libs:header
184 o.bbc: libs:swis
185 o.colourtran: s.colourtran
186 o.colourtran: libs:header
187 o.colourtran: libs:swis
188 o.font: c.font
189 o.font: C:h.stddef
190 o.font: h.os
191 o.font: C:h.kernel
192 o.font: C:h.trace
193 o.font: h.font
194 o.font: C:h.drawmod
195 o.interface: c.interface
196 o.interface: libs:h.stdio
197 o.interface: libs:h.swiv
198 o.interface: C:h.kernel
199 o.interface: h.os
200 o.interface: h.wimp
201 o.interface: h.wimpstruct
202 o.interface: h.sprite
203 o.interface: libs:h.swis
204 o.interface: h.pointer
205 o.interface: h.interface
206 o.interface: h.visdelay
207 o.os: s.os
208 o.os: libs:header
209 o.os: libs:swis
210 o.os: libs:s.swihack
211 o.print: c.print
212 o.print: h.os
213 o.print: C:h.kernel
214 o.print: C:h.print
215 o.sculptrix: s.sculptrix
216 o.sculptrix: libs:header
217 o.sculptrix: libs:swis
218 o.sprite: c.sprite
219 o.sprite: C:h.stddef
220 o.sprite: h.os
221 o.sprite: C:h.kernel
222 o.sprite: h.sprite
223 o.wimpext: s.wimpext
224 o.wimp_stat: s.wimp_stat
225 o.wimp_stat: libs:header
226 o.wimp_stat: libs:SWIs
227 o.wimp_stat: s.wimp_main
228 o.buffer: c.buffer
229 o.buffer: h.buffer
230 o.calltrace: s.calltrace
231 o.calltrace: libs:header
232 o.calltrace: libs:swis
233 o.exception: c.exception
234 o.exception: C:h.stdarg
235 o.exception: libs:h.stdio
236 o.exception: C:h.stdlib
237 o.exception: h.msgs
238 o.exception: h.exception
239 o.exception: C:h.setjmp
240 o.exception: libs:h.dll
241 o.exception: libs:h.os
242 o.exception: C:h.kernel
243 o.exception: libs:h.wimp
244 o.exception: libs:h.wimpstruct
245 o.exception: libs:h.sprite
246 o.exception: h.wimpt
247 o.exception: h.werr
248 o.exception: h.visdelay
249 o.utils: c.utils
250 o.utils: libs:h.stdio
251 o.utils: C:h.string
252 o.utils: libs:h.ctype
253 o.utils: h.utils
254 o.utils: h.os
255 o.utils: C:h.kernel
256 o.utils: h.os
257 o.utils: h.werr
258 o.utils: h.wimpt
259 o.utils: h.wimp
260 o.utils: h.wimpstruct
261 o.utils: h.sprite
262 o.utils: libs:h.swiv
263 o.utils: libs:h.swis
264 o.utils: h.buffer
265 o.vsscanf: c.vsscanf
266 o.vsscanf: libs:h.stdio
267 o.vsscanf: C:h.stdarg
268 o.vsscanf: C:h.stdlib
269 o.vsscanf: libs:h.ctype
270 o.vsscanf: h.vsscanf
271 o.akbd: c.akbd
272 o.akbd: h.os
273 o.akbd: C:h.kernel
274 o.akbd: h.akbd
275 o.akbd: h.bbc
276 o.coords: s.coords
277 o.coords: libs:header
278 o.keystring: c.keystring
279 o.keystring: h.akbd
280 o.keystring: h.msgs
281 o.keystring: h.keyString
282 o.keystring: h.buffer
283 o.keystring: C:h.string
284 o.keystring: libs:h.stdio
285 o.alarm: c.alarm
286 o.alarm: h.alarm
287 o.alarm: h.mem
288 o.alarm: h.werr
289 o.alarm: h.msgs
290 o.alarm: h.os
291 o.alarm: C:h.kernel
292 o.alarm: libs:h.swiv
293 o.alarm: libs:h.swis
294 o.blinkc: c.blinkc
295 o.blinkc: h.wimp
296 o.blinkc: h.wimpstruct
297 o.blinkc: h.os
298 o.blinkc: C:h.kernel
299 o.blinkc: h.sprite
300 o.blinkc: h.wimpt
301 o.blinkc: h.os
302 o.blinkc: h.blinkC
303 o.blinkc: h.alarm
304 o.blinkc: libs:h.swiv
305 o.blinkc: C:h.stdlib
306 o.blinkc: libs:h.dll
307 o.caretptr: c.caretptr
308 o.caretptr: libs:h.ctype
309 o.caretptr: h.pointer
310 o.caretptr: h.os
311 o.caretptr: C:h.kernel
312 o.caretptr: h.sprite
313 o.caretptr: h.win
314 o.caretptr: h.wimp
315 o.caretptr: h.wimpstruct
316 o.caretptr: h.wimpt
317 o.caretptr: h.wimp
318 o.caretptr: h.os
319 o.caretptr: h.caretptr
320 o.caretptr: h.resspr
321 o.pointer: c.pointer
322 o.pointer: libs:h.stdio
323 o.pointer: h.os
324 o.pointer: C:h.kernel
325 o.pointer: h.sprite
326 o.pointer: libs:h.swis
327 o.pointer: h.wimpt
328 o.pointer: h.wimp
329 o.pointer: h.wimpstruct
330 o.pointer: h.pointer
331 o.visdelay: c.visdelay
332 o.visdelay: h.visdelay
333 o.visdelay: h.os
334 o.visdelay: C:h.kernel
335 o.visdelay: libs:h.swiv
336 o.visdelay: libs:h.swis
337 o.visdelay: h.wimpt
338 o.visdelay: h.wimp
339 o.visdelay: h.wimpstruct
340 o.visdelay: h.sprite
341 o.visdelay: C:h.stdlib
342 o.visdelay: libs:h.dll
343 o.event: c.event
344 o.event: C:h.stdlib
345 o.event: C:h.string
346 o.event: h.event
347 o.event: h.wimp
348 o.event: h.wimpstruct
349 o.event: h.os
350 o.event: C:h.kernel
351 o.event: h.sprite
352 o.event: h.menu
353 o.event: h.wimpt
354 o.event: h.win
355 o.event: h.menu
356 o.event: h.msgs
357 o.event: h.werr
358 o.event: h.alarm
359 o.event: h.mem
360 o.event: libs:h.swis
361 o.event: h.dbox
362 o.help: c.help
363 o.help: h.wimp
364 o.help: h.wimpstruct
365 o.help: h.os
366 o.help: C:h.kernel
367 o.help: h.sprite
368 o.help: h.wimpt
369 o.help: h.help
370 o.help: h.msgs
371 o.help: h.werr
372 o.help: C:h.string
373 o.help: C:h.stdarg
374 o.help: libs:h.stdio
375 o.pane: c.pane
376 o.pane: h.wimp
377 o.pane: h.wimpstruct
378 o.pane: h.os
379 o.pane: C:h.kernel
380 o.pane: h.sprite
381 o.pane: h.wimpt
382 o.pane: h.pane
383 o.pane: h.listbox
384 o.pane: h.werr
385 o.pane: h.msgs
386 o.pane: h.mem
387 o.pane: h.win
388 o.pane: C:h.stdlib
389 o.wimpt: c.wimpt
390 o.wimpt: libs:h.stdio
391 o.wimpt: C:h.stdlib
392 o.wimpt: C:h.stdarg
393 o.wimpt: C:h.signal
394 o.wimpt: C:h.string
395 o.wimpt: libs:h.dll
396 o.wimpt: libs:h.os
397 o.wimpt: C:h.kernel
398 o.wimpt: libs:h.wimp
399 o.wimpt: libs:h.wimpstruct
400 o.wimpt: libs:h.sprite
401 o.wimpt: libs:h.swis
402 o.wimpt: C:h.kernel
403 o.wimpt: h.os
404 o.wimpt: h.bbc
405 o.wimpt: h.wimp
406 o.wimpt: h.font
407 o.wimpt: C:h.drawmod
408 o.wimpt: h.wimpt
409 o.wimpt: h.wimpt
410 o.wimpt: h.werr
411 o.wimpt: h.alarm
412 o.wimpt: h.event
413 o.wimpt: h.menu
414 o.wimpt: h.flex
415 o.wimpt: h.msgs
416 o.wimpt: h.interface
417 o.wimpt: h.exception
418 o.wimpt: C:h.setjmp
419 o.wimpt: h.mem
420 o.wimpt: h.visdelay
421 o.wimpt: h.caretptr
422 o.wimpt: h.pointer
423 o.wimpt: h.sculptrix
424 o.wimpt: h.resspr
425 o.win: c.win
426 o.win: C:h.stdarg
427 o.win: C:h.stdlib
428 o.win: C:h.string
429 o.win: libs:h.stdio
430 o.win: C:h.trace
431 o.win: h.os
432 o.win: C:h.kernel
433 o.win: h.wimp
434 o.win: h.wimpstruct
435 o.win: h.sprite
436 o.win: h.werr
437 o.win: h.wimpt
438 o.win: h.event
439 o.win: h.menu
440 o.win: h.msgs
441 o.win: h.mem
442 o.win: h.bbc
443 o.win: libs:h.swis
444 o.win: h.menu
445 o.win: h.win
446 o.baricon: c.baricon
447 o.baricon: h.baricon
448 o.baricon: h.ibicon
449 o.baricon: h.sprite
450 o.baricon: h.os
451 o.baricon: C:h.kernel
452 o.baricon: h.wimp
453 o.baricon: h.wimpstruct
454 o.baricon: h.event
455 o.baricon: h.menu
456 o.ibicon: c.ibicon
457 o.ibicon: h.wimp
458 o.ibicon: h.wimpstruct
459 o.ibicon: h.os
460 o.ibicon: C:h.kernel
461 o.ibicon: h.sprite
462 o.ibicon: h.wimpt
463 o.ibicon: h.os
464 o.ibicon: libs:h.swis
465 o.ibicon: h.bbc
466 o.ibicon: h.win
467 o.ibicon: h.werr
468 o.ibicon: h.ibicon
469 o.ibicon: h.event
470 o.ibicon: h.menu
471 o.ibicon: h.msgs
472 o.ibicon: h.event
473 o.ibicon: h.mem
474 o.ibicon: libs:h.swiv
475 o.ibicon: C:h.string
476 o.ibicon: libs:h.stdio
477 o.ibicon: libs:h.dll
478 o.listbox: c.listbox
479 o.listbox: libs:h.stdio
480 o.listbox: C:h.stdlib
481 o.listbox: C:h.string
482 o.listbox: h.wimp
483 o.listbox: h.wimpstruct
484 o.listbox: h.os
485 o.listbox: C:h.kernel
486 o.listbox: h.sprite
487 o.listbox: h.wimpt
488 o.listbox: h.event
489 o.listbox: h.menu
490 o.listbox: h.win
491 o.listbox: h.template
492 o.listbox: h.listbox
493 o.listbox: h.pane
494 o.listbox: h.werr
495 o.listbox: h.msgs
496 o.listbox: h.bbc
497 o.listbox: h.mem
498 o.listbox: h.utils
499 o.listbox: h.help
500 o.listbox: h.visdelay
501 o.listbox: libs:h.dll
502 o.viewer: c.viewer
503 o.viewer: h.wimp
504 o.viewer: h.wimpstruct
505 o.viewer: h.os
506 o.viewer: C:h.kernel
507 o.viewer: h.sprite
508 o.viewer: h.wimpt
509 o.viewer: h.win
510 o.viewer: h.viewer
511 o.viewer: h.menu
512 o.viewer: h.event
513 o.viewer: h.msgs
514 o.viewer: h.bbc
515 o.viewer: h.werr
516 o.viewer: h.os
517 o.viewer: h.xfersend
518 o.viewer: h.mem
519 o.viewer: h.coords
520 o.viewer: h.wimp
521 o.viewer: h.utils
522 o.viewer: h.help
523 o.viewer: h.fileicon
524 o.viewer: h.buffer
525 o.viewer: libs:h.swis
526 o.viewer: C:h.stdlib
527 o.viewer: C:h.string
528 o.viewer: libs:h.stdio
529 o.viewer: libs:h.dll
530 o.buttons: c.buttons
531 o.buttons: h.wimp
532 o.buttons: h.wimpstruct
533 o.buttons: h.os
534 o.buttons: C:h.kernel
535 o.buttons: h.sprite
536 o.buttons: h.wimpt
537 o.buttons: h.buttons
538 o.buttons: h.dbox
539 o.buttons: h.event
540 o.buttons: h.menu
541 o.buttons: h.bbc
542 o.buttons: h.win
543 o.buttons: h.werr
544 o.buttons: libs:h.stdio
545 o.buttons: C:h.colourtran
546 o.buttons: C:h.font
547 o.buttons: C:h.drawmod
548 o.buttons: h.msgs
549 o.buttons: h.mem
550 o.buttons: h.alarm
551 o.buttons: C:h.stdlib
552 o.buttons: C:h.string
553 o.fileicon: c.fileicon
554 o.fileicon: h.fileicon
555 o.fileicon: h.wimp
556 o.fileicon: h.wimpstruct
557 o.fileicon: h.os
558 o.fileicon: C:h.kernel
559 o.fileicon: h.sprite
560 o.fileicon: h.wimp
561 o.fileicon: h.wimpt
562 o.fileicon: h.werr
563 o.fileicon: h.msgs
564 o.fileicon: h.buffer
565 o.fileicon: libs:h.stdio
566 o.fileicon: C:h.string
567 o.nopoll: c.nopoll
568 o.nopoll: h.dbox
569 o.nopoll: h.wimp
570 o.nopoll: h.wimpstruct
571 o.nopoll: h.os
572 o.nopoll: C:h.kernel
573 o.nopoll: h.sprite
574 o.nopoll: h.event
575 o.nopoll: h.menu
576 o.nopoll: h.wimpt
577 o.nopoll: h.coords
578 o.nopoll: h.wimp
579 o.nopoll: h.bbc
580 o.nopoll: h.os
581 o.nopoll: h.nopoll
582 o.nopoll: h.interface
583 o.nopoll: h.sculptrix
584 o.nopoll: h.visdelay
585 o.nopoll: h.resspr
586 o.nopoll: libs:h.swiv
587 o.saveas: c.saveas
588 o.saveas: h.wimp
589 o.saveas: h.wimpstruct
590 o.saveas: h.os
591 o.saveas: C:h.kernel
592 o.saveas: h.sprite
593 o.saveas: h.wimpt
594 o.saveas: h.win
595 o.saveas: h.dbox
596 o.saveas: h.event
597 o.saveas: h.menu
598 o.saveas: h.help
599 o.saveas: h.saveas
600 o.saveas: h.xfersend
601 o.saveas: h.fileicon
602 o.saveas: h.stddbox
603 o.saveas: h.msgs
604 o.saveas: h.template
605 o.saveas: h.werr
606 o.stddbox: c.stddbox
607 o.stddbox: h.dbox
608 o.stddbox: h.wimp
609 o.stddbox: h.wimpstruct
610 o.stddbox: h.os
611 o.stddbox: C:h.kernel
612 o.stddbox: h.sprite
613 o.stddbox: h.event
614 o.stddbox: h.menu
615 o.stddbox: h.nopoll
616 o.stddbox: h.bbc
617 o.stddbox: h.stddbox
618 o.stddbox: h.xfersend
619 o.stddbox: h.werr
620 o.stddbox: h.win
621 o.stddbox: h.wimpt
622 o.stddbox: h.msgs
623 o.stddbox: h.saveas
624 o.stddbox: h.help
625 o.stddbox: C:h.stdarg
626 o.stddbox: libs:h.stdio
627 o.stddbox: C:h.string
628 o.tcol: c.tcol
629 o.tcol: h.dbox
630 o.tcol: h.wimp
631 o.tcol: h.wimpstruct
632 o.tcol: h.os
633 o.tcol: C:h.kernel
634 o.tcol: h.sprite
635 o.tcol: h.event
636 o.tcol: h.menu
637 o.tcol: h.buttons
638 o.tcol: h.wimp
639 o.tcol: h.wimpt
640 o.tcol: h.werr
641 o.tcol: h.tcol
642 o.tcol: h.help
643 o.tcol: h.msgs
644 o.tcol: h.mem
645 o.tcol: h.akbd
646 o.tcol: libs:h.stdio
647 o.tcol: C:h.string
648 o.tcol: C:h.stdlib
649 o.werr: c.werr
650 o.werr: h.werr
651 o.werr: h.dbox
652 o.werr: h.wimp
653 o.werr: h.wimpstruct
654 o.werr: h.os
655 o.werr: C:h.kernel
656 o.werr: h.sprite
657 o.werr: h.event
658 o.werr: h.menu
659 o.werr: h.template
660 o.werr: h.nopoll
661 o.werr: h.bbc
662 o.werr: h.wimp
663 o.werr: h.wimpt
664 o.werr: h.win
665 o.werr: h.msgs
666 o.werr: C:h.kernel
667 o.werr: libs:h.swiv
668 o.werr: libs:h.swis
669 o.werr: h.exception
670 o.werr: C:h.setjmp
671 o.werr: libs:h.dll
672 o.werr: h.calltrace
673 o.werr: C:h.stdlib
674 o.werr: C:h.stdarg
675 o.werr: C:h.string
676 o.werr: libs:h.stdio
677 o.choices: c.choices
678 o.choices: C:h.stdlib
679 o.choices: C:h.string
680 o.choices: h.res
681 o.choices: libs:h.stdio
682 o.choices: h.wimpt
683 o.choices: h.wimp
684 o.choices: h.wimpstruct
685 o.choices: h.os
686 o.choices: C:h.kernel
687 o.choices: h.sprite
688 o.choices: h.buffer
689 o.choices: h.choices
690 o.prefs: c.prefs
691 o.prefs: h.prefs
692 o.prefs: libs:h.stdio
693 o.prefs: h.os
694 o.prefs: C:h.kernel
695 o.prefs: h.utils
696 o.prefs: h.msgs
697 o.prefs: h.choices
698 o.prefs: h.res
699 o.prefs: C:h.kernel
700 o.prefs: h.werr
701 o.prefs: libs:h.stdio
702 o.prefs: C:h.string
703 o.prefs: libs:h.ctype
704 o.crc: c.crc
705 o.crc: h.crc
706 o.crc: h.crc32
707 o.crc: C:h.stddef
708 o.crc: h.os
709 o.crc: C:h.kernel
710 o.crc: h.res
711 o.crc: libs:h.stdio
712 o.crc: h.msgs
713 o.crc: h.werr
714 o.crc: h.wimpt
715 o.crc: h.wimp
716 o.crc: h.wimpstruct
717 o.crc: h.sprite
718 o.crc: libs:h.stdio
719 o.crc: C:h.stdlib
720 o.crc32: s.crc32
721 o.crc32: libs:header
722 o.crc32: libs:swis
723 o.creator: c.creator
724 o.creator: C:h.stdlib
725 o.creator: C:h.stdarg
726 o.creator: h.steel
727 o.creator: h.wimp
728 o.creator: h.wimpstruct
729 o.creator: h.os
730 o.creator: C:h.kernel
731 o.creator: h.sprite
732 o.creator: h.wimpt
733 o.creator: h.win
734 o.creator: h.event
735 o.creator: h.menu
736 o.creator: h.ibicon
737 o.creator: h.res
738 o.creator: libs:h.stdio
739 o.creator: h.resspr
740 o.creator: h.template
741 o.creator: h.dbox
742 o.creator: h.mem
743 o.creator: h.visdelay
744 o.creator: h.help
745 o.creator: h.exception
746 o.creator: C:h.setjmp
747 o.creator: libs:h.dll
748 o.creator: h.msgs
749 o.creator: h.utils
750 o.creator: h.stddbox
751 o.creator: h.xfersend
752 o.creator: h.werr
753 o.creator: C:h.string
754 o.creator: h.xtearoff
755 o.creator: h.tearoff
756 o.fontmenu: c.fontmenu
757 o.fontmenu: h.wimp
758 o.fontmenu: h.wimpstruct
759 o.fontmenu: h.os
760 o.fontmenu: C:h.kernel
761 o.fontmenu: h.sprite
762 o.fontmenu: h.fontMenu
763 o.fontmenu: h.menu
764 o.fontmenu: h.event
765 o.fontmenu: h.msgs
766 o.fontmenu: h.werr
767 o.fontmenu: h.wimpt
768 o.fontmenu: h.menuExt
769 o.fontmenu: h.buffer
770 o.fontmenu: libs:h.stdio
771 o.fontmenu: h.font
772 o.fontmenu: C:h.drawmod
773 o.fontmenu: h.visdelay
774 o.fontmenu: h.win
775 o.fontmenu: h.utils
776 o.fontmenu: C:h.string
777 o.fontmenu: C:h.stdlib
778 o.menu: c.menu
779 o.menu: h.menu
780 o.menu: h.wimp
781 o.menu: h.wimpstruct
782 o.menu: h.os
783 o.menu: C:h.kernel
784 o.menu: h.sprite
785 o.menu: h.event
786 o.menu: h.mem
787 o.menu: h.wimp
788 o.menu: h.werr
789 o.menu: h.msgs
790 o.menu: h.resspr
791 o.menu: h.event
792 o.menu: h.wimpt
793 o.menu: h.os
794 o.menu: libs:h.swis
795 o.menu: C:h.stdlib
796 o.menu: libs:h.stdio
797 o.menu: C:h.string
798 o.menu: libs:h.dll
799 o.tearoff: c.tearoff
800 o.tearoff: C:h.stdlib
801 o.tearoff: C:h.stdarg
802 o.tearoff: h.steel
803 o.tearoff: h.wimp
804 o.tearoff: h.wimpstruct
805 o.tearoff: h.os
806 o.tearoff: C:h.kernel
807 o.tearoff: h.sprite
808 o.tearoff: h.wimpt
809 o.tearoff: h.win
810 o.tearoff: h.event
811 o.tearoff: h.menu
812 o.tearoff: h.ibicon
813 o.tearoff: h.res
814 o.tearoff: libs:h.stdio
815 o.tearoff: h.resspr
816 o.tearoff: h.template
817 o.tearoff: h.dbox
818 o.tearoff: h.mem
819 o.tearoff: h.visdelay
820 o.tearoff: h.help
821 o.tearoff: h.exception
822 o.tearoff: C:h.setjmp
823 o.tearoff: libs:h.dll
824 o.tearoff: h.msgs
825 o.tearoff: h.utils
826 o.tearoff: h.stddbox
827 o.tearoff: h.xfersend
828 o.tearoff: h.werr
829 o.tearoff: C:h.string
830 o.tearoff: h.os
831 o.tearoff: h.bbc
832 o.tearoff: h.xtearoff
833 o.tearoff: h.tearoff
834 o.tearoff: h.font
835 o.tearoff: C:h.drawmod
836 o.tearoff: libs:h.swis
837 o.tearoff: h.alarm
838 o.tearoff: libs:tearSupt.h.tearSupt
839 o.scroller: c.scroller
840 o.scroller: libs:h.stdio
841 o.scroller: C:h.string
842 o.scroller: C:h.stdlib
843 o.scroller: h.scroller
844 o.scroller: h.wimp
845 o.scroller: h.wimpstruct
846 o.scroller: h.os
847 o.scroller: C:h.kernel
848 o.scroller: h.sprite
849 o.scroller: h.dbox
850 o.scroller: h.event
851 o.scroller: h.menu
852 o.scroller: h.steel
853 o.scroller: h.wimpt
854 o.scroller: h.win
855 o.scroller: h.ibicon
856 o.scroller: h.res
857 o.scroller: h.resspr
858 o.scroller: h.template
859 o.scroller: h.mem
860 o.scroller: h.visdelay
861 o.scroller: h.bbc
862 o.scroller: h.msgs
863 o.scroller: h.werr
864 o.xproginfo: c.xproginfo
865 o.xproginfo: h.steel
866 o.xproginfo: h.wimp
867 o.xproginfo: h.wimpstruct
868 o.xproginfo: h.os
869 o.xproginfo: C:h.kernel
870 o.xproginfo: h.sprite
871 o.xproginfo: h.wimpt
872 o.xproginfo: h.win
873 o.xproginfo: h.event
874 o.xproginfo: h.menu
875 o.xproginfo: h.ibicon
876 o.xproginfo: h.res
877 o.xproginfo: libs:h.stdio
878 o.xproginfo: h.resspr
879 o.xproginfo: h.template
880 o.xproginfo: h.dbox
881 o.xproginfo: h.mem
882 o.xproginfo: h.visdelay
883 o.xproginfo: h.help
884 o.xproginfo: h.exception
885 o.xproginfo: C:h.setjmp
886 o.xproginfo: libs:h.dll
887 o.xproginfo: h.msgs
888 o.xproginfo: h.utils
889 o.xproginfo: h.stddbox
890 o.xproginfo: h.xfersend
891 o.xproginfo: h.werr
892 o.xproginfo: h.scroller
893 o.xproginfo: h.xproginfo
894 o.msgs: c.msgs
895 o.msgs: libs:h.stdio
896 o.msgs: C:h.stdlib
897 o.msgs: C:h.string
898 o.msgs: libs:h.ctype
899 o.msgs: h.os
900 o.msgs: C:h.kernel
901 o.msgs: h.mem
902 o.msgs: h.werr
903 o.msgs: h.res
904 o.msgs: h.msgs
905 o.res: c.res
906 o.res: C:h.string
907 o.res: libs:h.stdio
908 o.res: h.os
909 o.res: C:h.kernel
910 o.res: libs:h.swiv
911 o.res: libs:h.swis
912 o.res: h.wimpt
913 o.res: h.wimp
914 o.res: h.wimpstruct
915 o.res: h.sprite
916 o.res: h.res
917 o.res: h.buffer
918 o.resspr: c.resspr
919 o.resspr: C:h.stdlib
920 o.resspr: h.os
921 o.resspr: C:h.kernel
922 o.resspr: h.resspr
923 o.resspr: h.sprite
924 o.resspr: h.mem
925 o.resspr: h.msgs
926 o.resspr: h.werr
927 o.resspr: h.res
928 o.resspr: libs:h.stdio
929 o.template: c.template
930 o.template: C:h.string
931 o.template: C:h.stdlib
932 o.template: libs:h.stdio
933 o.template: h.os
934 o.template: C:h.kernel
935 o.template: h.wimp
936 o.template: h.wimpstruct
937 o.template: h.sprite
938 o.template: h.utils
939 o.template: h.template
940 o.template: libs:h.dll
941 o.template: h.mem
942 o.template: h.font
943 o.template: C:h.drawmod
944 o.template: h.msgs
945 o.template: h.werr
946 o.template: h.res
947 o.template: h.resspr
948 o.fastMove: s.fastMove
949 o.fastMove: libs:s.fastMove
950 o.fastMove: libs:header
951 o.fastMove: libs:swis
952 o.flex_stat: s.flex_stat
953 o.flex_stat: libs:s.flex
954 o.flex_stat: libs:header
955 o.flex_stat: libs:swis
956 o.flex_stat: libs:sh.flexws
957 o.heap_stat: s.heap_stat
958 o.heap_stat: libs:s.heap
959 o.heap_stat: libs:header
960 o.heap_stat: libs:swis
961 o.heap_stat: libs:sh.heapws
962 o.mem: c.mem
963 o.mem: h.flex
964 o.mem: h.heap
965 o.mem: h.wimpt
966 o.mem: h.wimp
967 o.mem: h.wimpstruct
968 o.mem: h.os
969 o.mem: C:h.kernel
970 o.mem: h.sprite
971 o.mem: h.mem
972 o.mem: C:h.kernel
973 o.mem: h.bbc
974 o.mem: C:h.stdlib
975 o.mem: C:h.string
976 o.mem: libs:h.stdio
977 o.xferrecv: c.xferrecv
978 o.xferrecv: C:h.string
979 o.xferrecv: libs:h.stdio
980 o.xferrecv: C:h.trace
981 o.xferrecv: h.os
982 o.xferrecv: C:h.kernel
983 o.xferrecv: h.bbc
984 o.xferrecv: h.wimp
985 o.xferrecv: h.wimpstruct
986 o.xferrecv: h.sprite
987 o.xferrecv: h.wimpt
988 o.xferrecv: h.win
989 o.xferrecv: h.dbox
990 o.xferrecv: h.event
991 o.xferrecv: h.menu
992 o.xferrecv: C:h.typdat
993 o.xferrecv: h.xfersend
994 o.xferrecv: h.fileicon
995 o.xferrecv: h.werr
996 o.xferrecv: h.menu
997 o.xferrecv: h.event
998 o.xferrecv: h.xferrecv
999 o.xferrecv: h.flex
1000 o.xferrecv: h.msgs
1001 o.xfersend: c.xfersend
1002 o.xfersend: C:h.string
1003 o.xfersend: libs:h.stdio
1004 o.xfersend: C:h.stdlib
1005 o.xfersend: C:h.trace
1006 o.xfersend: h.os
1007 o.xfersend: C:h.kernel
1008 o.xfersend: h.bbc
1009 o.xfersend: h.wimp
1010 o.xfersend: h.wimpstruct
1011 o.xfersend: h.sprite
1012 o.xfersend: h.wimpt
1013 o.xfersend: h.win
1014 o.xfersend: h.dbox
1015 o.xfersend: h.event
1016 o.xfersend: h.menu
1017 o.xfersend: h.xfersend
1018 o.xfersend: h.fileicon
1019 o.xfersend: h.werr
1020 o.xfersend: h.menu
1021 o.xfersend: h.event
1022 o.xfersend: h.msgs
1023 o.xfersend: libs:h.swis
1024 do.bbc: s.bbc
1025 do.bbc: libs:header
1026 do.bbc: libs:swis
1027 do.colourtran: s.colourtran
1028 do.colourtran: libs:header
1029 do.colourtran: libs:swis
1030 do.font: c.font
1031 do.font: C:h.stddef
1032 do.font: h.os
1033 do.font: C:h.kernel
1034 do.font: C:h.trace
1035 do.font: h.font
1036 do.font: C:h.drawmod
1037 do.interface: c.interface
1038 do.interface: libs:h.stdio
1039 do.interface: libs:h.swiv
1040 do.interface: C:h.kernel
1041 do.interface: h.os
1042 do.interface: h.wimp
1043 do.interface: h.wimpstruct
1044 do.interface: h.sprite
1045 do.interface: libs:h.swis
1046 do.interface: h.pointer
1047 do.interface: h.interface
1048 do.interface: h.visdelay
1049 do.os: s.os
1050 do.os: libs:header
1051 do.os: libs:swis
1052 do.os: libs:s.swihack
1053 do.print: c.print
1054 do.print: h.os
1055 do.print: C:h.kernel
1056 do.print: C:h.print
1057 do.sculptrix: s.sculptrix
1058 do.sculptrix: libs:header
1059 do.sculptrix: libs:swis
1060 do.sprite: c.sprite
1061 do.sprite: C:h.stddef
1062 do.sprite: h.os
1063 do.sprite: C:h.kernel
1064 do.sprite: h.sprite
1065 do.wimpext: s.wimpext
1066 do.wimp_dll: s.wimp_dll
1067 do.wimp_dll: libs:header
1068 do.wimp_dll: libs:SWIs
1069 do.wimp_dll: s.wimp_main
1070 do.buffer: c.buffer
1071 do.buffer: h.buffer
1072 do.calltrace: s.calltrace
1073 do.calltrace: libs:header
1074 do.calltrace: libs:swis
1075 do.exception: c.exception
1076 do.exception: C:h.stdarg
1077 do.exception: libs:h.stdio
1078 do.exception: C:h.stdlib
1079 do.exception: h.msgs
1080 do.exception: h.exception
1081 do.exception: C:h.setjmp
1082 do.exception: libs:h.dll
1083 do.exception: libs:h.os
1084 do.exception: C:h.kernel
1085 do.exception: libs:h.wimp
1086 do.exception: libs:h.wimpstruct
1087 do.exception: libs:h.sprite
1088 do.exception: h.wimpt
1089 do.exception: h.werr
1090 do.exception: h.visdelay
1091 do.utils: c.utils
1092 do.utils: libs:h.stdio
1093 do.utils: C:h.string
1094 do.utils: libs:h.ctype
1095 do.utils: h.utils
1096 do.utils: h.os
1097 do.utils: C:h.kernel
1098 do.utils: h.os
1099 do.utils: h.werr
1100 do.utils: h.wimpt
1101 do.utils: h.wimp
1102 do.utils: h.wimpstruct
1103 do.utils: h.sprite
1104 do.utils: libs:h.swiv
1105 do.utils: libs:h.swis
1106 do.utils: h.buffer
1107 do.vsscanf: c.vsscanf
1108 do.vsscanf: libs:h.stdio
1109 do.vsscanf: C:h.stdarg
1110 do.vsscanf: C:h.stdlib
1111 do.vsscanf: libs:h.ctype
1112 do.vsscanf: h.vsscanf
1113 do.akbd: c.akbd
1114 do.akbd: h.os
1115 do.akbd: C:h.kernel
1116 do.akbd: h.akbd
1117 do.akbd: h.bbc
1118 do.coords: s.coords
1119 do.coords: libs:header
1120 do.keystring: c.keystring
1121 do.keystring: h.akbd
1122 do.keystring: h.msgs
1123 do.keystring: h.keyString
1124 do.keystring: h.buffer
1125 do.keystring: C:h.string
1126 do.keystring: libs:h.stdio
1127 do.alarm: c.alarm
1128 do.alarm: h.alarm
1129 do.alarm: h.mem
1130 do.alarm: h.werr
1131 do.alarm: h.msgs
1132 do.alarm: h.os
1133 do.alarm: C:h.kernel
1134 do.alarm: libs:h.swiv
1135 do.alarm: libs:h.swis
1136 do.blinkc: c.blinkc
1137 do.blinkc: h.wimp
1138 do.blinkc: h.wimpstruct
1139 do.blinkc: h.os
1140 do.blinkc: C:h.kernel
1141 do.blinkc: h.sprite
1142 do.blinkc: h.wimpt
1143 do.blinkc: h.os
1144 do.blinkc: h.blinkC
1145 do.blinkc: h.alarm
1146 do.blinkc: libs:h.swiv
1147 do.blinkc: C:h.stdlib
1148 do.blinkc: libs:h.dll
1149 do.caretptr: c.caretptr
1150 do.caretptr: libs:h.ctype
1151 do.caretptr: h.pointer
1152 do.caretptr: h.os
1153 do.caretptr: C:h.kernel
1154 do.caretptr: h.sprite
1155 do.caretptr: h.win
1156 do.caretptr: h.wimp
1157 do.caretptr: h.wimpstruct
1158 do.caretptr: h.wimpt
1159 do.caretptr: h.wimp
1160 do.caretptr: h.os
1161 do.caretptr: h.caretptr
1162 do.caretptr: h.resspr
1163 do.pointer: c.pointer
1164 do.pointer: libs:h.stdio
1165 do.pointer: h.os
1166 do.pointer: C:h.kernel
1167 do.pointer: h.sprite
1168 do.pointer: libs:h.swis
1169 do.pointer: h.wimpt
1170 do.pointer: h.wimp
1171 do.pointer: h.wimpstruct
1172 do.pointer: h.pointer
1173 do.visdelay: c.visdelay
1174 do.visdelay: h.visdelay
1175 do.visdelay: h.os
1176 do.visdelay: C:h.kernel
1177 do.visdelay: libs:h.swiv
1178 do.visdelay: libs:h.swis
1179 do.visdelay: h.wimpt
1180 do.visdelay: h.wimp
1181 do.visdelay: h.wimpstruct
1182 do.visdelay: h.sprite
1183 do.visdelay: C:h.stdlib
1184 do.visdelay: libs:h.dll
1185 do.event: c.event
1186 do.event: C:h.stdlib
1187 do.event: C:h.string
1188 do.event: h.event
1189 do.event: h.wimp
1190 do.event: h.wimpstruct
1191 do.event: h.os
1192 do.event: C:h.kernel
1193 do.event: h.sprite
1194 do.event: h.menu
1195 do.event: h.wimpt
1196 do.event: h.win
1197 do.event: h.menu
1198 do.event: h.msgs
1199 do.event: h.werr
1200 do.event: h.alarm
1201 do.event: h.mem
1202 do.event: libs:h.swis
1203 do.event: h.dbox
1204 do.help: c.help
1205 do.help: h.wimp
1206 do.help: h.wimpstruct
1207 do.help: h.os
1208 do.help: C:h.kernel
1209 do.help: h.sprite
1210 do.help: h.wimpt
1211 do.help: h.help
1212 do.help: h.msgs
1213 do.help: h.werr
1214 do.help: C:h.string
1215 do.help: C:h.stdarg
1216 do.help: libs:h.stdio
1217 do.pane: c.pane
1218 do.pane: h.wimp
1219 do.pane: h.wimpstruct
1220 do.pane: h.os
1221 do.pane: C:h.kernel
1222 do.pane: h.sprite
1223 do.pane: h.wimpt
1224 do.pane: h.pane
1225 do.pane: h.listbox
1226 do.pane: h.werr
1227 do.pane: h.msgs
1228 do.pane: h.mem
1229 do.pane: h.win
1230 do.pane: C:h.stdlib
1231 do.wimpt: c.wimpt
1232 do.wimpt: libs:h.stdio
1233 do.wimpt: C:h.stdlib
1234 do.wimpt: C:h.stdarg
1235 do.wimpt: C:h.signal
1236 do.wimpt: C:h.string
1237 do.wimpt: libs:h.dll
1238 do.wimpt: libs:h.os
1239 do.wimpt: C:h.kernel
1240 do.wimpt: libs:h.wimp
1241 do.wimpt: libs:h.wimpstruct
1242 do.wimpt: libs:h.sprite
1243 do.wimpt: libs:h.swis
1244 do.wimpt: C:h.kernel
1245 do.wimpt: h.os
1246 do.wimpt: h.bbc
1247 do.wimpt: h.wimp
1248 do.wimpt: h.font
1249 do.wimpt: C:h.drawmod
1250 do.wimpt: h.wimpt
1251 do.wimpt: h.wimpt
1252 do.wimpt: h.werr
1253 do.wimpt: h.alarm
1254 do.wimpt: h.event
1255 do.wimpt: h.menu
1256 do.wimpt: h.flex
1257 do.wimpt: h.msgs
1258 do.wimpt: h.interface
1259 do.wimpt: h.exception
1260 do.wimpt: C:h.setjmp
1261 do.wimpt: h.mem
1262 do.wimpt: h.visdelay
1263 do.wimpt: h.caretptr
1264 do.wimpt: h.pointer
1265 do.wimpt: h.sculptrix
1266 do.wimpt: h.resspr
1267 do.win: c.win
1268 do.win: C:h.stdarg
1269 do.win: C:h.stdlib
1270 do.win: C:h.string
1271 do.win: libs:h.stdio
1272 do.win: C:h.trace
1273 do.win: h.os
1274 do.win: C:h.kernel
1275 do.win: h.wimp
1276 do.win: h.wimpstruct
1277 do.win: h.sprite
1278 do.win: h.werr
1279 do.win: h.wimpt
1280 do.win: h.event
1281 do.win: h.menu
1282 do.win: h.msgs
1283 do.win: h.mem
1284 do.win: h.bbc
1285 do.win: libs:h.swis
1286 do.win: h.menu
1287 do.win: h.win
1288 do.baricon: c.baricon
1289 do.baricon: h.baricon
1290 do.baricon: h.ibicon
1291 do.baricon: h.sprite
1292 do.baricon: h.os
1293 do.baricon: C:h.kernel
1294 do.baricon: h.wimp
1295 do.baricon: h.wimpstruct
1296 do.baricon: h.event
1297 do.baricon: h.menu
1298 do.ibicon: c.ibicon
1299 do.ibicon: h.wimp
1300 do.ibicon: h.wimpstruct
1301 do.ibicon: h.os
1302 do.ibicon: C:h.kernel
1303 do.ibicon: h.sprite
1304 do.ibicon: h.wimpt
1305 do.ibicon: h.os
1306 do.ibicon: libs:h.swis
1307 do.ibicon: h.bbc
1308 do.ibicon: h.win
1309 do.ibicon: h.werr
1310 do.ibicon: h.ibicon
1311 do.ibicon: h.event
1312 do.ibicon: h.menu
1313 do.ibicon: h.msgs
1314 do.ibicon: h.event
1315 do.ibicon: h.mem
1316 do.ibicon: libs:h.swiv
1317 do.ibicon: C:h.string
1318 do.ibicon: libs:h.stdio
1319 do.ibicon: libs:h.dll
1320 do.listbox: c.listbox
1321 do.listbox: libs:h.stdio
1322 do.listbox: C:h.stdlib
1323 do.listbox: C:h.string
1324 do.listbox: h.wimp
1325 do.listbox: h.wimpstruct
1326 do.listbox: h.os
1327 do.listbox: C:h.kernel
1328 do.listbox: h.sprite
1329 do.listbox: h.wimpt
1330 do.listbox: h.event
1331 do.listbox: h.menu
1332 do.listbox: h.win
1333 do.listbox: h.template
1334 do.listbox: h.listbox
1335 do.listbox: h.pane
1336 do.listbox: h.werr
1337 do.listbox: h.msgs
1338 do.listbox: h.bbc
1339 do.listbox: h.mem
1340 do.listbox: h.utils
1341 do.listbox: h.help
1342 do.listbox: h.visdelay
1343 do.listbox: libs:h.dll
1344 do.viewer: c.viewer
1345 do.viewer: h.wimp
1346 do.viewer: h.wimpstruct
1347 do.viewer: h.os
1348 do.viewer: C:h.kernel
1349 do.viewer: h.sprite
1350 do.viewer: h.wimpt
1351 do.viewer: h.win
1352 do.viewer: h.viewer
1353 do.viewer: h.menu
1354 do.viewer: h.event
1355 do.viewer: h.msgs
1356 do.viewer: h.bbc
1357 do.viewer: h.werr
1358 do.viewer: h.os
1359 do.viewer: h.xfersend
1360 do.viewer: h.mem
1361 do.viewer: h.coords
1362 do.viewer: h.wimp
1363 do.viewer: h.utils
1364 do.viewer: h.help
1365 do.viewer: h.fileicon
1366 do.viewer: h.buffer
1367 do.viewer: libs:h.swis
1368 do.viewer: C:h.stdlib
1369 do.viewer: C:h.string
1370 do.viewer: libs:h.stdio
1371 do.viewer: libs:h.dll
1372 do.buttons: c.buttons
1373 do.buttons: h.wimp
1374 do.buttons: h.wimpstruct
1375 do.buttons: h.os
1376 do.buttons: C:h.kernel
1377 do.buttons: h.sprite
1378 do.buttons: h.wimpt
1379 do.buttons: h.buttons
1380 do.buttons: h.dbox
1381 do.buttons: h.event
1382 do.buttons: h.menu
1383 do.buttons: h.bbc
1384 do.buttons: h.win
1385 do.buttons: h.werr
1386 do.buttons: libs:h.stdio
1387 do.buttons: h.colourtran
1388 do.buttons: h.font
1389 do.buttons: C:h.drawmod
1390 do.buttons: h.msgs
1391 do.buttons: h.mem
1392 do.buttons: h.alarm
1393 do.buttons: C:h.stdlib
1394 do.buttons: C:h.string
1395 do.fileicon: c.fileicon
1396 do.fileicon: h.fileicon
1397 do.fileicon: h.wimp
1398 do.fileicon: h.wimpstruct
1399 do.fileicon: h.os
1400 do.fileicon: C:h.kernel
1401 do.fileicon: h.sprite
1402 do.fileicon: h.wimp
1403 do.fileicon: h.wimpt
1404 do.fileicon: h.werr
1405 do.fileicon: h.msgs
1406 do.fileicon: h.buffer
1407 do.fileicon: libs:h.stdio
1408 do.fileicon: C:h.string
1409 do.nopoll: c.nopoll
1410 do.nopoll: h.dbox
1411 do.nopoll: h.wimp
1412 do.nopoll: h.wimpstruct
1413 do.nopoll: h.os
1414 do.nopoll: C:h.kernel
1415 do.nopoll: h.sprite
1416 do.nopoll: h.event
1417 do.nopoll: h.menu
1418 do.nopoll: h.wimpt
1419 do.nopoll: h.coords
1420 do.nopoll: h.wimp
1421 do.nopoll: h.bbc
1422 do.nopoll: h.os
1423 do.nopoll: h.nopoll
1424 do.nopoll: h.interface
1425 do.nopoll: h.sculptrix
1426 do.nopoll: h.visdelay
1427 do.nopoll: h.resspr
1428 do.nopoll: libs:h.swiv
1429 do.saveas: c.saveas
1430 do.saveas: h.wimp
1431 do.saveas: h.wimpstruct
1432 do.saveas: h.os
1433 do.saveas: C:h.kernel
1434 do.saveas: h.sprite
1435 do.saveas: h.wimpt
1436 do.saveas: h.win
1437 do.saveas: h.dbox
1438 do.saveas: h.event
1439 do.saveas: h.menu
1440 do.saveas: h.help
1441 do.saveas: h.saveas
1442 do.saveas: h.xfersend
1443 do.saveas: h.fileicon
1444 do.saveas: h.stddbox
1445 do.saveas: h.msgs
1446 do.saveas: h.template
1447 do.saveas: h.werr
1448 do.stddbox: c.stddbox
1449 do.stddbox: h.dbox
1450 do.stddbox: h.wimp
1451 do.stddbox: h.wimpstruct
1452 do.stddbox: h.os
1453 do.stddbox: C:h.kernel
1454 do.stddbox: h.sprite
1455 do.stddbox: h.event
1456 do.stddbox: h.menu
1457 do.stddbox: h.nopoll
1458 do.stddbox: h.bbc
1459 do.stddbox: h.stddbox
1460 do.stddbox: h.xfersend
1461 do.stddbox: h.werr
1462 do.stddbox: h.win
1463 do.stddbox: h.wimpt
1464 do.stddbox: h.msgs
1465 do.stddbox: h.saveas
1466 do.stddbox: h.help
1467 do.stddbox: C:h.stdarg
1468 do.stddbox: libs:h.stdio
1469 do.stddbox: C:h.string
1470 do.tcol: c.tcol
1471 do.tcol: h.dbox
1472 do.tcol: h.wimp
1473 do.tcol: h.wimpstruct
1474 do.tcol: h.os
1475 do.tcol: C:h.kernel
1476 do.tcol: h.sprite
1477 do.tcol: h.event
1478 do.tcol: h.menu
1479 do.tcol: h.buttons
1480 do.tcol: h.wimp
1481 do.tcol: h.wimpt
1482 do.tcol: h.werr
1483 do.tcol: h.tcol
1484 do.tcol: h.help
1485 do.tcol: h.msgs
1486 do.tcol: h.mem
1487 do.tcol: h.akbd
1488 do.tcol: libs:h.stdio
1489 do.tcol: C:h.string
1490 do.tcol: C:h.stdlib
1491 do.werr: c.werr
1492 do.werr: h.werr
1493 do.werr: h.dbox
1494 do.werr: h.wimp
1495 do.werr: h.wimpstruct
1496 do.werr: h.os
1497 do.werr: C:h.kernel
1498 do.werr: h.sprite
1499 do.werr: h.event
1500 do.werr: h.menu
1501 do.werr: h.template
1502 do.werr: h.nopoll
1503 do.werr: h.bbc
1504 do.werr: h.wimp
1505 do.werr: h.wimpt
1506 do.werr: h.win
1507 do.werr: h.msgs
1508 do.werr: C:h.kernel
1509 do.werr: libs:h.swiv
1510 do.werr: libs:h.swis
1511 do.werr: h.exception
1512 do.werr: C:h.setjmp
1513 do.werr: libs:h.dll
1514 do.werr: h.calltrace
1515 do.werr: C:h.stdlib
1516 do.werr: C:h.stdarg
1517 do.werr: C:h.string
1518 do.werr: libs:h.stdio
1519 do.choices: c.choices
1520 do.choices: C:h.stdlib
1521 do.choices: C:h.string
1522 do.choices: h.res
1523 do.choices: libs:h.stdio
1524 do.choices: h.wimpt
1525 do.choices: h.wimp
1526 do.choices: h.wimpstruct
1527 do.choices: h.os
1528 do.choices: C:h.kernel
1529 do.choices: h.sprite
1530 do.choices: h.buffer
1531 do.choices: h.choices
1532 do.prefs: c.prefs
1533 do.prefs: h.prefs
1534 do.prefs: libs:h.stdio
1535 do.prefs: h.os
1536 do.prefs: C:h.kernel
1537 do.prefs: h.utils
1538 do.prefs: h.msgs
1539 do.prefs: h.choices
1540 do.prefs: h.res
1541 do.prefs: C:h.kernel
1542 do.prefs: h.werr
1543 do.prefs: libs:h.stdio
1544 do.prefs: C:h.string
1545 do.prefs: libs:h.ctype
1546 do.creator: c.creator
1547 do.creator: C:h.stdlib
1548 do.creator: C:h.stdarg
1549 do.creator: h.steel
1550 do.creator: h.wimp
1551 do.creator: h.wimpstruct
1552 do.creator: h.os
1553 do.creator: C:h.kernel
1554 do.creator: h.sprite
1555 do.creator: h.wimpt
1556 do.creator: h.win
1557 do.creator: h.event
1558 do.creator: h.menu
1559 do.creator: h.ibicon
1560 do.creator: h.res
1561 do.creator: libs:h.stdio
1562 do.creator: h.resspr
1563 do.creator: h.template
1564 do.creator: h.dbox
1565 do.creator: h.mem
1566 do.creator: h.visdelay
1567 do.creator: h.help
1568 do.creator: h.exception
1569 do.creator: C:h.setjmp
1570 do.creator: libs:h.dll
1571 do.creator: h.msgs
1572 do.creator: h.utils
1573 do.creator: h.stddbox
1574 do.creator: h.xfersend
1575 do.creator: h.werr
1576 do.creator: C:h.string
1577 do.creator: h.xtearoff
1578 do.creator: h.tearoff
1579 do.fontmenu: c.fontmenu
1580 do.fontmenu: h.wimp
1581 do.fontmenu: h.wimpstruct
1582 do.fontmenu: h.os
1583 do.fontmenu: C:h.kernel
1584 do.fontmenu: h.sprite
1585 do.fontmenu: h.fontMenu
1586 do.fontmenu: h.menu
1587 do.fontmenu: h.event
1588 do.fontmenu: h.msgs
1589 do.fontmenu: h.werr
1590 do.fontmenu: h.wimpt
1591 do.fontmenu: h.menuExt
1592 do.fontmenu: h.buffer
1593 do.fontmenu: libs:h.stdio
1594 do.fontmenu: h.font
1595 do.fontmenu: C:h.drawmod
1596 do.fontmenu: h.visdelay
1597 do.fontmenu: h.win
1598 do.fontmenu: h.utils
1599 do.fontmenu: C:h.string
1600 do.fontmenu: C:h.stdlib
1601 do.menu: c.menu
1602 do.menu: h.menu
1603 do.menu: h.wimp
1604 do.menu: h.wimpstruct
1605 do.menu: h.os
1606 do.menu: C:h.kernel
1607 do.menu: h.sprite
1608 do.menu: h.event
1609 do.menu: h.mem
1610 do.menu: h.wimp
1611 do.menu: h.werr
1612 do.menu: h.msgs
1613 do.menu: h.resspr
1614 do.menu: h.event
1615 do.menu: h.wimpt
1616 do.menu: h.os
1617 do.menu: libs:h.swis
1618 do.menu: C:h.stdlib
1619 do.menu: libs:h.stdio
1620 do.menu: C:h.string
1621 do.menu: libs:h.dll
1622 do.tearoff: c.tearoff
1623 do.tearoff: C:h.stdlib
1624 do.tearoff: C:h.stdarg
1625 do.tearoff: h.steel
1626 do.tearoff: h.wimp
1627 do.tearoff: h.wimpstruct
1628 do.tearoff: h.os
1629 do.tearoff: C:h.kernel
1630 do.tearoff: h.sprite
1631 do.tearoff: h.wimpt
1632 do.tearoff: h.win
1633 do.tearoff: h.event
1634 do.tearoff: h.menu
1635 do.tearoff: h.ibicon
1636 do.tearoff: h.res
1637 do.tearoff: libs:h.stdio
1638 do.tearoff: h.resspr
1639 do.tearoff: h.template
1640 do.tearoff: h.dbox
1641 do.tearoff: h.mem
1642 do.tearoff: h.visdelay
1643 do.tearoff: h.help
1644 do.tearoff: h.exception
1645 do.tearoff: C:h.setjmp
1646 do.tearoff: libs:h.dll
1647 do.tearoff: h.msgs
1648 do.tearoff: h.utils
1649 do.tearoff: h.stddbox
1650 do.tearoff: h.xfersend
1651 do.tearoff: h.werr
1652 do.tearoff: C:h.string
1653 do.tearoff: h.os
1654 do.tearoff: h.bbc
1655 do.tearoff: h.xtearoff
1656 do.tearoff: h.tearoff
1657 do.tearoff: h.font
1658 do.tearoff: C:h.drawmod
1659 do.tearoff: libs:h.swis
1660 do.tearoff: h.alarm
1661 do.tearoff: libs:tearSupt.h.tearSupt
1662 do.msgs: c.msgs
1663 do.msgs: libs:h.stdio
1664 do.msgs: C:h.stdlib
1665 do.msgs: C:h.string
1666 do.msgs: libs:h.ctype
1667 do.msgs: h.os
1668 do.msgs: C:h.kernel
1669 do.msgs: h.mem
1670 do.msgs: h.werr
1671 do.msgs: h.res
1672 do.msgs: h.msgs
1673 do.res: c.res
1674 do.res: C:h.string
1675 do.res: libs:h.stdio
1676 do.res: h.os
1677 do.res: C:h.kernel
1678 do.res: libs:h.swiv
1679 do.res: libs:h.swis
1680 do.res: h.wimpt
1681 do.res: h.wimp
1682 do.res: h.wimpstruct
1683 do.res: h.sprite
1684 do.res: h.res
1685 do.res: h.buffer
1686 do.resspr: c.resspr
1687 do.resspr: C:h.stdlib
1688 do.resspr: h.os
1689 do.resspr: C:h.kernel
1690 do.resspr: h.resspr
1691 do.resspr: h.sprite
1692 do.resspr: h.mem
1693 do.resspr: h.msgs
1694 do.resspr: h.werr
1695 do.resspr: h.res
1696 do.resspr: libs:h.stdio
1697 do.template: c.template
1698 do.template: C:h.string
1699 do.template: C:h.stdlib
1700 do.template: libs:h.stdio
1701 do.template: h.os
1702 do.template: C:h.kernel
1703 do.template: h.wimp
1704 do.template: h.wimpstruct
1705 do.template: h.sprite
1706 do.template: h.utils
1707 do.template: h.template
1708 do.template: libs:h.dll
1709 do.template: h.mem
1710 do.template: h.font
1711 do.template: C:h.drawmod
1712 do.template: h.msgs
1713 do.template: h.werr
1714 do.template: h.res
1715 do.template: h.resspr
1716 do.fastMove: s.fastMove
1717 do.fastMove: libs:s.fastMove
1718 do.fastMove: libs:header
1719 do.fastMove: libs:swis
1720 do.flex_dll: s.flex_dll
1721 do.flex_dll: libs:s.flex
1722 do.flex_dll: libs:header
1723 do.flex_dll: libs:swis
1724 do.flex_dll: libs:sh.flexws
1725 do.heap_dll: s.heap_dll
1726 do.heap_dll: libs:s.heap
1727 do.heap_dll: libs:header
1728 do.heap_dll: libs:swis
1729 do.heap_dll: libs:sh.heapws
1730 do.mem: c.mem
1731 do.mem: h.flex
1732 do.mem: h.heap
1733 do.mem: h.wimpt
1734 do.mem: h.wimp
1735 do.mem: h.wimpstruct
1736 do.mem: h.os
1737 do.mem: C:h.kernel
1738 do.mem: h.sprite
1739 do.mem: h.mem
1740 do.mem: C:h.kernel
1741 do.mem: h.bbc
1742 do.mem: C:h.stdlib
1743 do.mem: C:h.string
1744 do.mem: libs:h.stdio
1745 do.xferrecv: c.xferrecv
1746 do.xferrecv: C:h.string
1747 do.xferrecv: libs:h.stdio
1748 do.xferrecv: C:h.trace
1749 do.xferrecv: h.os
1750 do.xferrecv: C:h.kernel
1751 do.xferrecv: h.bbc
1752 do.xferrecv: h.wimp
1753 do.xferrecv: h.wimpstruct
1754 do.xferrecv: h.sprite
1755 do.xferrecv: h.wimpt
1756 do.xferrecv: h.win
1757 do.xferrecv: h.dbox
1758 do.xferrecv: h.event
1759 do.xferrecv: h.menu
1760 do.xferrecv: C:h.typdat
1761 do.xferrecv: h.xfersend
1762 do.xferrecv: h.fileicon
1763 do.xferrecv: h.werr
1764 do.xferrecv: h.menu
1765 do.xferrecv: h.event
1766 do.xferrecv: h.xferrecv
1767 do.xferrecv: h.flex
1768 do.xferrecv: h.msgs
1769 do.xfersend: c.xfersend
1770 do.xfersend: C:h.string
1771 do.xfersend: libs:h.stdio
1772 do.xfersend: C:h.stdlib
1773 do.xfersend: C:h.trace
1774 do.xfersend: h.os
1775 do.xfersend: C:h.kernel
1776 do.xfersend: h.bbc
1777 do.xfersend: h.wimp
1778 do.xfersend: h.wimpstruct
1779 do.xfersend: h.sprite
1780 do.xfersend: h.wimpt
1781 do.xfersend: h.win
1782 do.xfersend: h.dbox
1783 do.xfersend: h.event
1784 do.xfersend: h.menu
1785 do.xfersend: h.xfersend
1786 do.xfersend: h.fileicon
1787 do.xfersend: h.werr
1788 do.xfersend: h.menu
1789 do.xfersend: h.event
1790 do.xfersend: h.msgs
1791 do.xfersend: libs:h.swis
1792 o.dbox: c.dbox
1793 o.dbox: h.event
1794 o.dbox: h.wimp
1795 o.dbox: h.wimpstruct
1796 o.dbox: h.os
1797 o.dbox: C:h.kernel
1798 o.dbox: h.sprite
1799 o.dbox: h.menu
1800 o.dbox: h.wimpt
1801 o.dbox: h.wimp
1802 o.dbox: h.interface
1803 o.dbox: h.sculptrix
1804 o.dbox: h.werr
1805 o.dbox: h.template
1806 o.dbox: h.win
1807 o.dbox: h.dbox
1808 o.dbox: h.msgs
1809 o.dbox: h.bbc
1810 o.dbox: h.mem
1811 o.dbox: h.akbd
1812 o.dbox: h.os
1813 o.dbox: libs:h.swiv
1814 o.dbox: libs:h.swis
1815 o.dbox: h.help
1816 o.dbox: h.vsscanf
1817 o.dbox: C:h.stdarg
1818 o.dbox: C:h.string
1819 o.dbox: C:h.stdlib
1820 o.dbox: libs:h.stdio
1821 o.dbox: C:h.stdarg
1822 o.dbox: libs:h.dll
1823 do.dbox: c.dbox
1824 do.dbox: h.event
1825 do.dbox: h.wimp
1826 do.dbox: h.wimpstruct
1827 do.dbox: h.os
1828 do.dbox: C:h.kernel
1829 do.dbox: h.sprite
1830 do.dbox: h.menu
1831 do.dbox: h.wimpt
1832 do.dbox: h.wimp
1833 do.dbox: h.interface
1834 do.dbox: h.sculptrix
1835 do.dbox: h.werr
1836 do.dbox: h.template
1837 do.dbox: h.win
1838 do.dbox: h.dbox
1839 do.dbox: h.msgs
1840 do.dbox: h.bbc
1841 do.dbox: h.mem
1842 do.dbox: h.akbd
1843 do.dbox: h.os
1844 do.dbox: libs:h.swiv
1845 do.dbox: libs:h.swis
1846 do.dbox: h.help
1847 do.dbox: h.vsscanf
1848 do.dbox: C:h.stdarg
1849 do.dbox: C:h.string
1850 do.dbox: C:h.stdlib
1851 do.dbox: libs:h.stdio
1852 do.dbox: C:h.stdarg
1853 do.dbox: libs:h.dll