#   File        : MakeFile
#   Date        : 19-Sep-02
#   Description : Makefile for AlexLib.
#
#   Copyright  1995-2002 Alexander Thoukydides
#
#   This program is free software; you can redistribute it and/or
#   modify it under the terms of the GNU General Public License
#   as published by the Free Software Foundation; either version 2
#   of the License, or (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software
#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA

# Include path:
IncludePath     = ,CPP:,CPP:hoist.,CLib:,OSLib:,OSLibSupport:,AT:

# Tool flags:
CCflags         = -zo -fw -ff -c -depend !Depend -I$(IncludePath) -throwback \
                  -D__swi=extern -g
C++flags        = -zo -fw -ff -c -depend !Depend -I$(IncludePath) -throwback \
                  -D__swi -C++ -DUSING_OSLIB +g +v
Linkflags       = -c++ -throwback -nounused -o $@ \
#                  -debug -leaveweak
ObjAsmflags     = -desktop -depend !Depend -I$(IncludePath) -throwback -nocache
Squeezeflags    = -f -v -o $@
LibFileflags    = -c -l -o $@

# Object files:
LibraryFiles    = AT:o.alexlib \
                  CPP:o.CathLibCPP \
                  OSLib:o.OSLib \
                  CPP:o.Stubs
                  
MiscFiles       = o.raise

GadgetFiles     = Gadgets.o.actionbutton_b \
                  Gadgets.o.actionbutton_c \
                  Gadgets.o.actionbutton_t \
                  Gadgets.o.adjuster_b \
                  Gadgets.o.adjuster_c \
                  Gadgets.o.adjuster_t \
                  Gadgets.o.button_b \
                  Gadgets.o.button_c \
                  Gadgets.o.button_t \
                  Gadgets.o.displayfield_b \
                  Gadgets.o.displayfield_c \
                  Gadgets.o.displayfield_t \
                  Gadgets.o.draggable_b \
                  Gadgets.o.draggable_c \
                  Gadgets.o.draggable_t \
                  Gadgets.o.gadget_b \
                  Gadgets.o.gadget_c \
                  Gadgets.o.gadget_t \
                  Gadgets.o.gadget_w_allowable \
                  Gadgets.o.gadget_w_boolean \
                  Gadgets.o.gadget_w_caret \
                  Gadgets.o.gadget_w_event \
                  Gadgets.o.gadget_w_font \
                  Gadgets.o.gadget_w_justification \
                  Gadgets.o.gadget_w_number \
                  Gadgets.o.gadget_w_show_c \
                  Gadgets.o.gadget_w_show_t \
                  Gadgets.o.gadget_w_slider \
                  Gadgets.o.gadget_w_string \
                  Gadgets.o.gadget_w_text \
                  Gadgets.o.labelledbox_b \
                  Gadgets.o.labelledbox_c \
                  Gadgets.o.labelledbox_t \
                  Gadgets.o.label_b \
                  Gadgets.o.label_c \
                  Gadgets.o.label_t \
                  Gadgets.o.numberrange_b \
                  Gadgets.o.numberrange_c \
                  Gadgets.o.numberrange_t \
                  Gadgets.o.optionbutton_b \
                  Gadgets.o.optionbutton_c \
                  Gadgets.o.optionbutton_t \
                  Gadgets.o.popup_b \
                  Gadgets.o.popup_c \
                  Gadgets.o.popup_t \
                  Gadgets.o.radiobutton_b \
                  Gadgets.o.radiobutton_c \
                  Gadgets.o.radiobutton_t \
                  Gadgets.o.slider_b \
                  Gadgets.o.slider_c \
                  Gadgets.o.slider_t \
                  Gadgets.o.stringset_b \
                  Gadgets.o.stringset_c \
                  Gadgets.o.stringset_t \
                  Gadgets.o.writablefield_b \
                  Gadgets.o.writablefield_c \
                  Gadgets.o.writablefield_t

ObjectFiles     = 

TestFiles       = Test.o.gadgets \
                  o.alexlib

# Final targets:
all:            o.alexlib Test.Gadgets

o.alexlib:      $(MiscFiles) $(GadgetFiles)
                remove o.alexlib
                libfile $(LibFileflags) o.* Gadgets.o.*
                # Objects.o.*

Test.Gadgets:   $(TestFiles)
                drlink -aif $(LinkFlags) $(LibraryFiles) $(TestFiles)
                squeeze $(SqueezeFlags) $@

# General rules:
.SUFFIXES:      .o .s .h .c .c++
.c.o:;          cc $(CCflags) -o $@ $<
.c++.o:;        c++ $(C++flags) -o $@ $<
.s.o:;          objasm $(ObjAsmflags) -o $@ $<

# Dynamic dependencies:
Objects.o.object_t:	Objects.c++.object_t
Objects.o.object_t:	Objects.h.object_t
Objects.o.object_t:	Objects.h.object_b
Objects.o.object_t:	CPP:h.string
Objects.o.object_t:	CPP:h.bool
Objects.o.object_t:	CPP:h.config
Objects.o.object_t:	CPP:h.iosfwd
Objects.o.object_t:	CPP:h.iterator
Objects.o.object_t:	CPP:h.newcasts
Objects.o.object_t:	OS:h.toolbox
Objects.o.object_t:	OS:h.types
Objects.o.object_t:	OS:h.os
Objects.o.object_t:	OS:h.wimp
Objects.o.object_t:	OS:h.osspriteop
Objects.o.object_t:	OS:h.font
Objects.o.object_t:	OS:h.messagetrans
Objects.o.object_t:	OS:h.macros
Objects.o.object_b:	Objects.c++.object_b
Objects.o.object_b:	Objects.h.object_b
Objects.o.object_b:	CPP:h.string
Objects.o.object_b:	CPP:h.bool
Objects.o.object_b:	CPP:h.config
Objects.o.object_b:	CPP:h.iosfwd
Objects.o.object_b:	CPP:h.iterator
Objects.o.object_b:	CPP:h.newcasts
Objects.o.object_b:	OS:h.toolbox
Objects.o.object_b:	OS:h.types
Objects.o.object_b:	OS:h.os
Objects.o.object_b:	OS:h.wimp
Objects.o.object_b:	OS:h.osspriteop
Objects.o.object_b:	OS:h.font
Objects.o.object_b:	OS:h.messagetrans
Objects.o.object_b:	OS:h.macros
Objects.o.object_c:	Objects.c++.object_c
Objects.o.object_c:	Objects.h.object_c
Objects.o.object_c:	Objects.h.object_b
Objects.o.object_c:	CPP:h.string
Objects.o.object_c:	CPP:h.bool
Objects.o.object_c:	CPP:h.config
Objects.o.object_c:	CPP:h.iosfwd
Objects.o.object_c:	CPP:h.iterator
Objects.o.object_c:	CPP:h.newcasts
Objects.o.object_c:	OS:h.toolbox
Objects.o.object_c:	OS:h.types
Objects.o.object_c:	OS:h.os
Objects.o.object_c:	OS:h.wimp
Objects.o.object_c:	OS:h.osspriteop
Objects.o.object_c:	OS:h.font
Objects.o.object_c:	OS:h.messagetrans
Objects.o.object_c:	OS:h.macros
Objects.o.box:	Objects.c++.box
Objects.o.box:	Objects.h.box
Objects.o.box:	OS:h.os
Objects.o.box:	OS:h.types
Objects.o.box:	Objects.h.point
Objects.o.point:	Objects.c++.point
Objects.o.point:	Objects.h.point
o.event:	c.event
o.event:	OS:h.wimp
o.event:	OS:h.types
o.event:	OS:h.os
o.event:	OS:h.osspriteop
o.event:	OS:h.font
o.event:	OS:h.toolbox
o.event:	OS:h.messagetrans
o.event:	h.tbevent
o.event:	h.event
o.event:	h.wimpevent
o.event:	h.wimpmsg
o.tbevent:	c.tbevent
o.tbevent:	OS:h.messagetrans
o.tbevent:	OS:h.types
o.tbevent:	OS:h.os
o.tbevent:	h.tbevent
o.tbevent:	OS:h.wimp
o.tbevent:	OS:h.osspriteop
o.tbevent:	OS:h.font
o.tbevent:	OS:h.toolbox
o.tbevent:	h.event
o.tbevent:	h.x
o.wimpevent:	c.wimpevent
o.wimpevent:	OS:h.os
o.wimpevent:	OS:h.types
o.wimpevent:	h.wimpevent
o.wimpevent:	OS:h.wimp
o.wimpevent:	OS:h.osspriteop
o.wimpevent:	OS:h.font
o.wimpevent:	OS:h.toolbox
o.wimpevent:	OS:h.messagetrans
o.wimpevent:	h.event
o.wimpevent:	h.x
o.wimpmsg:	c.wimpmsg
o.wimpmsg:	OS:h.os
o.wimpmsg:	OS:h.types
o.wimpmsg:	h.wimpmsg
o.wimpmsg:	OS:h.wimp
o.wimpmsg:	OS:h.osspriteop
o.wimpmsg:	OS:h.font
o.wimpmsg:	OS:h.toolbox
o.wimpmsg:	OS:h.messagetrans
o.wimpmsg:	h.event
o.wimpmsg:	h.x
o.x:	c.x
o.x:	CLib:h.kernel
o.x:	OS:h.macros
o.x:	OS:h.messagetrans
o.x:	OS:h.types
o.x:	OS:h.os
o.x:	OS:h.os
o.x:	h.x
Test.o.gadgets:	Test.c++.gadgets
Test.o.gadgets:	AT:h.actionbutton_c
Test.o.gadgets:	AT:h.actionbutton_b
Test.o.gadgets:	OSLib:oslib.h.actionbutton
Test.o.gadgets:	OSLib:oslib.h.types
Test.o.gadgets:	OSLib:oslib.h.toolbox
Test.o.gadgets:	OSLib:oslib.h.os
Test.o.gadgets:	OSLib:oslib.h.oscore32
Test.o.gadgets:	OSLib:oslib.h.osf32
Test.o.gadgets:	OSLib:oslib.h.wimp
Test.o.gadgets:	OSLib:oslib.h.osspriteop
Test.o.gadgets:	OSLib:oslib.h.font
Test.o.gadgets:	OSLib:oslib.h.wimp32
Test.o.gadgets:	OSLib:oslib.h.messagetrans
Test.o.gadgets:	OSLib:oslib.h.gadget
Test.o.gadgets:	AT:h.gadget_b
Test.o.gadgets:	CPP:h.string
Test.o.gadgets:	CPP:h.bool
Test.o.gadgets:	CPP:h.config
Test.o.gadgets:	CPP:h.iosfwd
Test.o.gadgets:	CPP:h.iterator
Test.o.gadgets:	CPP:h.newcasts
Test.o.gadgets:	OSLib:oslib.h.gadget
Test.o.gadgets:	OSLib:oslib.h.macros
Test.o.gadgets:	AT:h.gadget_w_event
Test.o.gadgets:	OSLib:oslib.h.types
Test.o.gadgets:	AT:h.gadget_w_text
Test.o.gadgets:	AT:h.gadget_c
Test.o.gadgets:	CPP:h.vector
Test.o.gadgets:	CPP:h.vectorbase
Test.o.gadgets:	CPP:h.utility
Test.o.gadgets:	AT:h.gadget_w_show_c
Test.o.gadgets:	OSLib:oslib.h.gadget
Test.o.gadgets:	AT:h.actionbutton_t
Test.o.gadgets:	AT:h.gadget_t
Test.o.gadgets:	AT:h.gadget_w_show_t
Test.o.gadgets:	AT:h.adjuster_c
Test.o.gadgets:	AT:h.adjuster_b
Test.o.gadgets:	OSLib:oslib.h.adjuster
Test.o.gadgets:	AT:h.adjuster_t
Test.o.gadgets:	AT:h.button_c
Test.o.gadgets:	AT:h.button_b
Test.o.gadgets:	OSLib:oslib.h.button
Test.o.gadgets:	OSLib:oslib.h.wimp
Test.o.gadgets:	AT:h.gadget_w_string
Test.o.gadgets:	AT:h.gadget_w_font
Test.o.gadgets:	AT:h.button_t
Test.o.gadgets:	AT:h.displayfield_c
Test.o.gadgets:	AT:h.displayfield_b
Test.o.gadgets:	OSLib:oslib.h.displayfield
Test.o.gadgets:	AT:h.gadget_w_justification
Test.o.gadgets:	AT:h.displayfield_t
Test.o.gadgets:	AT:h.draggable_c
Test.o.gadgets:	AT:h.draggable_b
Test.o.gadgets:	OSLib:oslib.h.draggable
Test.o.gadgets:	OSLib:oslib.h.window
Test.o.gadgets:	OSLib:oslib.h.keyboardshortcut
Test.o.gadgets:	AT:h.gadget_w_boolean
Test.o.gadgets:	OSLib:oslib.h.macros
Test.o.gadgets:	OSLib:oslib.h.types
Test.o.gadgets:	AT:h.draggable_t
Test.o.gadgets:	AT:h.labelledbox_c
Test.o.gadgets:	AT:h.labelledbox_b
Test.o.gadgets:	OSLib:oslib.h.labelledbox
Test.o.gadgets:	AT:h.labelledbox_t
Test.o.gadgets:	AT:h.label_c
Test.o.gadgets:	AT:h.label_b
Test.o.gadgets:	OSLib:oslib.h.label
Test.o.gadgets:	AT:h.label_t
Test.o.gadgets:	AT:h.numberrange_c
Test.o.gadgets:	AT:h.numberrange_b
Test.o.gadgets:	OSLib:oslib.h.numberrange
Test.o.gadgets:	AT:h.gadget_w_slider
Test.o.gadgets:	OSLib:oslib.h.wimp
Test.o.gadgets:	AT:h.gadget_w_number
Test.o.gadgets:	AT:h.numberrange_t
Test.o.gadgets:	AT:h.gadget_w_caret
Test.o.gadgets:	OSLib:oslib.h.gadget
Test.o.gadgets:	OSLib:oslib.h.macros
Test.o.gadgets:	AT:h.optionbutton_c
Test.o.gadgets:	AT:h.optionbutton_b
Test.o.gadgets:	OSLib:oslib.h.optionbutton
Test.o.gadgets:	AT:h.optionbutton_t
Test.o.gadgets:	AT:h.popup_c
Test.o.gadgets:	AT:h.popup_b
Test.o.gadgets:	OSLib:oslib.h.popup
Test.o.gadgets:	AT:h.popup_t
Test.o.gadgets:	AT:h.radiobutton_c
Test.o.gadgets:	AT:h.radiobutton_b
Test.o.gadgets:	OSLib:oslib.h.radiobutton
Test.o.gadgets:	AT:h.radiobutton_t
Test.o.gadgets:	AT:h.slider_c
Test.o.gadgets:	AT:h.slider_b
Test.o.gadgets:	OSLib:oslib.h.slider
Test.o.gadgets:	AT:h.slider_t
Test.o.gadgets:	AT:h.stringset_c
Test.o.gadgets:	AT:h.stringset_b
Test.o.gadgets:	CPP:h.list
Test.o.gadgets:	CPP:h.listbase
Test.o.gadgets:	OSLib:oslib.h.stringset
Test.o.gadgets:	AT:h.gadget_w_allowable
Test.o.gadgets:	AT:h.stringset_t
Test.o.gadgets:	AT:h.writablefield_c
Test.o.gadgets:	AT:h.writablefield_b
Test.o.gadgets:	OSLib:oslib.h.writablefield
Test.o.gadgets:	AT:h.writablefield_t
o.raise:	c.raise
o.raise:	h.raise
o.raise:	OSLib:oslib.h.osbyte
o.raise:	OSLib:oslib.h.types
o.raise:	OSLib:oslib.h.os
o.raise:	OSLib:oslib.h.oscore32
o.raise:	OSLib:oslib.h.osf32
Gadgets.o.actionbutton_b:	Gadgets.c++.actionbutton_b
Gadgets.o.actionbutton_b:	Gadgets.h.actionbutton_b
Gadgets.o.actionbutton_b:	OSLib:oslib.h.actionbutton
Gadgets.o.actionbutton_b:	OSLib:oslib.h.types
Gadgets.o.actionbutton_b:	OSLib:oslib.h.toolbox
Gadgets.o.actionbutton_b:	OSLib:oslib.h.os
Gadgets.o.actionbutton_b:	OSLib:oslib.h.oscore32
Gadgets.o.actionbutton_b:	OSLib:oslib.h.osf32
Gadgets.o.actionbutton_b:	OSLib:oslib.h.wimp
Gadgets.o.actionbutton_b:	OSLib:oslib.h.osspriteop
Gadgets.o.actionbutton_b:	OSLib:oslib.h.font
Gadgets.o.actionbutton_b:	OSLib:oslib.h.wimp32
Gadgets.o.actionbutton_b:	OSLib:oslib.h.messagetrans
Gadgets.o.actionbutton_b:	OSLib:oslib.h.gadget
Gadgets.o.actionbutton_b:	Gadgets.h.gadget_b
Gadgets.o.actionbutton_b:	CPP:h.string
Gadgets.o.actionbutton_b:	CPP:h.bool
Gadgets.o.actionbutton_b:	CPP:h.config
Gadgets.o.actionbutton_b:	CPP:h.iosfwd
Gadgets.o.actionbutton_b:	CPP:h.iterator
Gadgets.o.actionbutton_b:	CPP:h.newcasts
Gadgets.o.actionbutton_b:	OSLib:oslib.h.gadget
Gadgets.o.actionbutton_b:	OSLib:oslib.h.macros
Gadgets.o.actionbutton_b:	Gadgets.h.gadget_w_event
Gadgets.o.actionbutton_b:	OSLib:oslib.h.types
Gadgets.o.actionbutton_b:	Gadgets.h.gadget_w_text
Gadgets.o.actionbutton_c:	Gadgets.c++.actionbutton_c
Gadgets.o.actionbutton_c:	Gadgets.h.actionbutton_c
Gadgets.o.actionbutton_c:	Gadgets.h.actionbutton_b
Gadgets.o.actionbutton_c:	OSLib:oslib.h.actionbutton
Gadgets.o.actionbutton_c:	OSLib:oslib.h.types
Gadgets.o.actionbutton_c:	OSLib:oslib.h.toolbox
Gadgets.o.actionbutton_c:	OSLib:oslib.h.os
Gadgets.o.actionbutton_c:	OSLib:oslib.h.oscore32
Gadgets.o.actionbutton_c:	OSLib:oslib.h.osf32
Gadgets.o.actionbutton_c:	OSLib:oslib.h.wimp
Gadgets.o.actionbutton_c:	OSLib:oslib.h.osspriteop
Gadgets.o.actionbutton_c:	OSLib:oslib.h.font
Gadgets.o.actionbutton_c:	OSLib:oslib.h.wimp32
Gadgets.o.actionbutton_c:	OSLib:oslib.h.messagetrans
Gadgets.o.actionbutton_c:	OSLib:oslib.h.gadget
Gadgets.o.actionbutton_c:	Gadgets.h.gadget_b
Gadgets.o.actionbutton_c:	CPP:h.string
Gadgets.o.actionbutton_c:	CPP:h.bool
Gadgets.o.actionbutton_c:	CPP:h.config
Gadgets.o.actionbutton_c:	CPP:h.iosfwd
Gadgets.o.actionbutton_c:	CPP:h.iterator
Gadgets.o.actionbutton_c:	CPP:h.newcasts
Gadgets.o.actionbutton_c:	OSLib:oslib.h.gadget
Gadgets.o.actionbutton_c:	OSLib:oslib.h.macros
Gadgets.o.actionbutton_c:	Gadgets.h.gadget_w_event
Gadgets.o.actionbutton_c:	OSLib:oslib.h.types
Gadgets.o.actionbutton_c:	Gadgets.h.gadget_w_text
Gadgets.o.actionbutton_c:	Gadgets.h.gadget_c
Gadgets.o.actionbutton_c:	CPP:h.vector
Gadgets.o.actionbutton_c:	CPP:h.vectorbase
Gadgets.o.actionbutton_c:	CPP:h.utility
Gadgets.o.actionbutton_c:	Gadgets.h.gadget_w_show_c
Gadgets.o.actionbutton_c:	OSLib:oslib.h.gadget
Gadgets.o.actionbutton_t:	Gadgets.c++.actionbutton_t
Gadgets.o.actionbutton_t:	Gadgets.h.actionbutton_t
Gadgets.o.actionbutton_t:	Gadgets.h.actionbutton_b
Gadgets.o.actionbutton_t:	OSLib:oslib.h.actionbutton
Gadgets.o.actionbutton_t:	OSLib:oslib.h.types
Gadgets.o.actionbutton_t:	OSLib:oslib.h.toolbox
Gadgets.o.actionbutton_t:	OSLib:oslib.h.os
Gadgets.o.actionbutton_t:	OSLib:oslib.h.oscore32
Gadgets.o.actionbutton_t:	OSLib:oslib.h.osf32
Gadgets.o.actionbutton_t:	OSLib:oslib.h.wimp
Gadgets.o.actionbutton_t:	OSLib:oslib.h.osspriteop
Gadgets.o.actionbutton_t:	OSLib:oslib.h.font
Gadgets.o.actionbutton_t:	OSLib:oslib.h.wimp32
Gadgets.o.actionbutton_t:	OSLib:oslib.h.messagetrans
Gadgets.o.actionbutton_t:	OSLib:oslib.h.gadget
Gadgets.o.actionbutton_t:	Gadgets.h.gadget_b
Gadgets.o.actionbutton_t:	CPP:h.string
Gadgets.o.actionbutton_t:	CPP:h.bool
Gadgets.o.actionbutton_t:	CPP:h.config
Gadgets.o.actionbutton_t:	CPP:h.iosfwd
Gadgets.o.actionbutton_t:	CPP:h.iterator
Gadgets.o.actionbutton_t:	CPP:h.newcasts
Gadgets.o.actionbutton_t:	OSLib:oslib.h.gadget
Gadgets.o.actionbutton_t:	OSLib:oslib.h.macros
Gadgets.o.actionbutton_t:	Gadgets.h.gadget_w_event
Gadgets.o.actionbutton_t:	OSLib:oslib.h.types
Gadgets.o.actionbutton_t:	Gadgets.h.gadget_w_text
Gadgets.o.actionbutton_t:	Gadgets.h.gadget_t
Gadgets.o.actionbutton_t:	Gadgets.h.gadget_w_show_t
Gadgets.o.adjuster_b:	Gadgets.c++.adjuster_b
Gadgets.o.adjuster_b:	Gadgets.h.adjuster_b
Gadgets.o.adjuster_b:	OSLib:oslib.h.adjuster
Gadgets.o.adjuster_b:	OSLib:oslib.h.types
Gadgets.o.adjuster_b:	OSLib:oslib.h.toolbox
Gadgets.o.adjuster_b:	OSLib:oslib.h.os
Gadgets.o.adjuster_b:	OSLib:oslib.h.oscore32
Gadgets.o.adjuster_b:	OSLib:oslib.h.osf32
Gadgets.o.adjuster_b:	OSLib:oslib.h.wimp
Gadgets.o.adjuster_b:	OSLib:oslib.h.osspriteop
Gadgets.o.adjuster_b:	OSLib:oslib.h.font
Gadgets.o.adjuster_b:	OSLib:oslib.h.wimp32
Gadgets.o.adjuster_b:	OSLib:oslib.h.messagetrans
Gadgets.o.adjuster_b:	OSLib:oslib.h.gadget
Gadgets.o.adjuster_b:	Gadgets.h.gadget_b
Gadgets.o.adjuster_b:	CPP:h.string
Gadgets.o.adjuster_b:	CPP:h.bool
Gadgets.o.adjuster_b:	CPP:h.config
Gadgets.o.adjuster_b:	CPP:h.iosfwd
Gadgets.o.adjuster_b:	CPP:h.iterator
Gadgets.o.adjuster_b:	CPP:h.newcasts
Gadgets.o.adjuster_b:	OSLib:oslib.h.gadget
Gadgets.o.adjuster_b:	OSLib:oslib.h.macros
Gadgets.o.adjuster_c:	Gadgets.c++.adjuster_c
Gadgets.o.adjuster_c:	Gadgets.h.adjuster_c
Gadgets.o.adjuster_c:	Gadgets.h.adjuster_b
Gadgets.o.adjuster_c:	OSLib:oslib.h.adjuster
Gadgets.o.adjuster_c:	OSLib:oslib.h.types
Gadgets.o.adjuster_c:	OSLib:oslib.h.toolbox
Gadgets.o.adjuster_c:	OSLib:oslib.h.os
Gadgets.o.adjuster_c:	OSLib:oslib.h.oscore32
Gadgets.o.adjuster_c:	OSLib:oslib.h.osf32
Gadgets.o.adjuster_c:	OSLib:oslib.h.wimp
Gadgets.o.adjuster_c:	OSLib:oslib.h.osspriteop
Gadgets.o.adjuster_c:	OSLib:oslib.h.font
Gadgets.o.adjuster_c:	OSLib:oslib.h.wimp32
Gadgets.o.adjuster_c:	OSLib:oslib.h.messagetrans
Gadgets.o.adjuster_c:	OSLib:oslib.h.gadget
Gadgets.o.adjuster_c:	Gadgets.h.gadget_b
Gadgets.o.adjuster_c:	CPP:h.string
Gadgets.o.adjuster_c:	CPP:h.bool
Gadgets.o.adjuster_c:	CPP:h.config
Gadgets.o.adjuster_c:	CPP:h.iosfwd
Gadgets.o.adjuster_c:	CPP:h.iterator
Gadgets.o.adjuster_c:	CPP:h.newcasts
Gadgets.o.adjuster_c:	OSLib:oslib.h.gadget
Gadgets.o.adjuster_c:	OSLib:oslib.h.macros
Gadgets.o.adjuster_c:	Gadgets.h.gadget_c
Gadgets.o.adjuster_c:	CPP:h.vector
Gadgets.o.adjuster_c:	CPP:h.vectorbase
Gadgets.o.adjuster_c:	CPP:h.utility
Gadgets.o.adjuster_t:	Gadgets.c++.adjuster_t
Gadgets.o.adjuster_t:	Gadgets.h.adjuster_t
Gadgets.o.adjuster_t:	Gadgets.h.adjuster_b
Gadgets.o.adjuster_t:	OSLib:oslib.h.adjuster
Gadgets.o.adjuster_t:	OSLib:oslib.h.types
Gadgets.o.adjuster_t:	OSLib:oslib.h.toolbox
Gadgets.o.adjuster_t:	OSLib:oslib.h.os
Gadgets.o.adjuster_t:	OSLib:oslib.h.oscore32
Gadgets.o.adjuster_t:	OSLib:oslib.h.osf32
Gadgets.o.adjuster_t:	OSLib:oslib.h.wimp
Gadgets.o.adjuster_t:	OSLib:oslib.h.osspriteop
Gadgets.o.adjuster_t:	OSLib:oslib.h.font
Gadgets.o.adjuster_t:	OSLib:oslib.h.wimp32
Gadgets.o.adjuster_t:	OSLib:oslib.h.messagetrans
Gadgets.o.adjuster_t:	OSLib:oslib.h.gadget
Gadgets.o.adjuster_t:	Gadgets.h.gadget_b
Gadgets.o.adjuster_t:	CPP:h.string
Gadgets.o.adjuster_t:	CPP:h.bool
Gadgets.o.adjuster_t:	CPP:h.config
Gadgets.o.adjuster_t:	CPP:h.iosfwd
Gadgets.o.adjuster_t:	CPP:h.iterator
Gadgets.o.adjuster_t:	CPP:h.newcasts
Gadgets.o.adjuster_t:	OSLib:oslib.h.gadget
Gadgets.o.adjuster_t:	OSLib:oslib.h.macros
Gadgets.o.adjuster_t:	Gadgets.h.gadget_t
Gadgets.o.button_b:	Gadgets.c++.button_b
Gadgets.o.button_b:	Gadgets.h.button_b
Gadgets.o.button_b:	OSLib:oslib.h.button
Gadgets.o.button_b:	OSLib:oslib.h.types
Gadgets.o.button_b:	OSLib:oslib.h.toolbox
Gadgets.o.button_b:	OSLib:oslib.h.os
Gadgets.o.button_b:	OSLib:oslib.h.oscore32
Gadgets.o.button_b:	OSLib:oslib.h.osf32
Gadgets.o.button_b:	OSLib:oslib.h.wimp
Gadgets.o.button_b:	OSLib:oslib.h.osspriteop
Gadgets.o.button_b:	OSLib:oslib.h.font
Gadgets.o.button_b:	OSLib:oslib.h.wimp32
Gadgets.o.button_b:	OSLib:oslib.h.messagetrans
Gadgets.o.button_b:	OSLib:oslib.h.gadget
Gadgets.o.button_b:	OSLib:oslib.h.wimp
Gadgets.o.button_b:	Gadgets.h.gadget_b
Gadgets.o.button_b:	CPP:h.string
Gadgets.o.button_b:	CPP:h.bool
Gadgets.o.button_b:	CPP:h.config
Gadgets.o.button_b:	CPP:h.iosfwd
Gadgets.o.button_b:	CPP:h.iterator
Gadgets.o.button_b:	CPP:h.newcasts
Gadgets.o.button_b:	OSLib:oslib.h.gadget
Gadgets.o.button_b:	OSLib:oslib.h.macros
Gadgets.o.button_b:	Gadgets.h.gadget_w_string
Gadgets.o.button_c:	Gadgets.c++.button_c
Gadgets.o.button_c:	Gadgets.h.button_c
Gadgets.o.button_c:	Gadgets.h.button_b
Gadgets.o.button_c:	OSLib:oslib.h.button
Gadgets.o.button_c:	OSLib:oslib.h.types
Gadgets.o.button_c:	OSLib:oslib.h.toolbox
Gadgets.o.button_c:	OSLib:oslib.h.os
Gadgets.o.button_c:	OSLib:oslib.h.oscore32
Gadgets.o.button_c:	OSLib:oslib.h.osf32
Gadgets.o.button_c:	OSLib:oslib.h.wimp
Gadgets.o.button_c:	OSLib:oslib.h.osspriteop
Gadgets.o.button_c:	OSLib:oslib.h.font
Gadgets.o.button_c:	OSLib:oslib.h.wimp32
Gadgets.o.button_c:	OSLib:oslib.h.messagetrans
Gadgets.o.button_c:	OSLib:oslib.h.gadget
Gadgets.o.button_c:	OSLib:oslib.h.wimp
Gadgets.o.button_c:	Gadgets.h.gadget_b
Gadgets.o.button_c:	CPP:h.string
Gadgets.o.button_c:	CPP:h.bool
Gadgets.o.button_c:	CPP:h.config
Gadgets.o.button_c:	CPP:h.iosfwd
Gadgets.o.button_c:	CPP:h.iterator
Gadgets.o.button_c:	CPP:h.newcasts
Gadgets.o.button_c:	OSLib:oslib.h.gadget
Gadgets.o.button_c:	OSLib:oslib.h.macros
Gadgets.o.button_c:	Gadgets.h.gadget_w_string
Gadgets.o.button_c:	Gadgets.h.gadget_c
Gadgets.o.button_c:	CPP:h.vector
Gadgets.o.button_c:	CPP:h.vectorbase
Gadgets.o.button_c:	CPP:h.utility
Gadgets.o.button_c:	Gadgets.h.gadget_w_font
Gadgets.o.button_t:	Gadgets.c++.button_t
Gadgets.o.button_t:	Gadgets.h.button_t
Gadgets.o.button_t:	Gadgets.h.button_b
Gadgets.o.button_t:	OSLib:oslib.h.button
Gadgets.o.button_t:	OSLib:oslib.h.types
Gadgets.o.button_t:	OSLib:oslib.h.toolbox
Gadgets.o.button_t:	OSLib:oslib.h.os
Gadgets.o.button_t:	OSLib:oslib.h.oscore32
Gadgets.o.button_t:	OSLib:oslib.h.osf32
Gadgets.o.button_t:	OSLib:oslib.h.wimp
Gadgets.o.button_t:	OSLib:oslib.h.osspriteop
Gadgets.o.button_t:	OSLib:oslib.h.font
Gadgets.o.button_t:	OSLib:oslib.h.wimp32
Gadgets.o.button_t:	OSLib:oslib.h.messagetrans
Gadgets.o.button_t:	OSLib:oslib.h.gadget
Gadgets.o.button_t:	OSLib:oslib.h.wimp
Gadgets.o.button_t:	Gadgets.h.gadget_b
Gadgets.o.button_t:	CPP:h.string
Gadgets.o.button_t:	CPP:h.bool
Gadgets.o.button_t:	CPP:h.config
Gadgets.o.button_t:	CPP:h.iosfwd
Gadgets.o.button_t:	CPP:h.iterator
Gadgets.o.button_t:	CPP:h.newcasts
Gadgets.o.button_t:	OSLib:oslib.h.gadget
Gadgets.o.button_t:	OSLib:oslib.h.macros
Gadgets.o.button_t:	Gadgets.h.gadget_w_string
Gadgets.o.button_t:	Gadgets.h.gadget_t
Gadgets.o.displayfield_b:	Gadgets.c++.displayfield_b
Gadgets.o.displayfield_b:	Gadgets.h.displayfield_b
Gadgets.o.displayfield_b:	OSLib:oslib.h.displayfield
Gadgets.o.displayfield_b:	OSLib:oslib.h.types
Gadgets.o.displayfield_b:	OSLib:oslib.h.toolbox
Gadgets.o.displayfield_b:	OSLib:oslib.h.os
Gadgets.o.displayfield_b:	OSLib:oslib.h.oscore32
Gadgets.o.displayfield_b:	OSLib:oslib.h.osf32
Gadgets.o.displayfield_b:	OSLib:oslib.h.wimp
Gadgets.o.displayfield_b:	OSLib:oslib.h.osspriteop
Gadgets.o.displayfield_b:	OSLib:oslib.h.font
Gadgets.o.displayfield_b:	OSLib:oslib.h.wimp32
Gadgets.o.displayfield_b:	OSLib:oslib.h.messagetrans
Gadgets.o.displayfield_b:	OSLib:oslib.h.gadget
Gadgets.o.displayfield_b:	Gadgets.h.gadget_b
Gadgets.o.displayfield_b:	CPP:h.string
Gadgets.o.displayfield_b:	CPP:h.bool
Gadgets.o.displayfield_b:	CPP:h.config
Gadgets.o.displayfield_b:	CPP:h.iosfwd
Gadgets.o.displayfield_b:	CPP:h.iterator
Gadgets.o.displayfield_b:	CPP:h.newcasts
Gadgets.o.displayfield_b:	OSLib:oslib.h.gadget
Gadgets.o.displayfield_b:	OSLib:oslib.h.macros
Gadgets.o.displayfield_b:	Gadgets.h.gadget_w_justification
Gadgets.o.displayfield_b:	Gadgets.h.gadget_w_string
Gadgets.o.displayfield_c:	Gadgets.c++.displayfield_c
Gadgets.o.displayfield_c:	Gadgets.h.displayfield_c
Gadgets.o.displayfield_c:	Gadgets.h.displayfield_b
Gadgets.o.displayfield_c:	OSLib:oslib.h.displayfield
Gadgets.o.displayfield_c:	OSLib:oslib.h.types
Gadgets.o.displayfield_c:	OSLib:oslib.h.toolbox
Gadgets.o.displayfield_c:	OSLib:oslib.h.os
Gadgets.o.displayfield_c:	OSLib:oslib.h.oscore32
Gadgets.o.displayfield_c:	OSLib:oslib.h.osf32
Gadgets.o.displayfield_c:	OSLib:oslib.h.wimp
Gadgets.o.displayfield_c:	OSLib:oslib.h.osspriteop
Gadgets.o.displayfield_c:	OSLib:oslib.h.font
Gadgets.o.displayfield_c:	OSLib:oslib.h.wimp32
Gadgets.o.displayfield_c:	OSLib:oslib.h.messagetrans
Gadgets.o.displayfield_c:	OSLib:oslib.h.gadget
Gadgets.o.displayfield_c:	Gadgets.h.gadget_b
Gadgets.o.displayfield_c:	CPP:h.string
Gadgets.o.displayfield_c:	CPP:h.bool
Gadgets.o.displayfield_c:	CPP:h.config
Gadgets.o.displayfield_c:	CPP:h.iosfwd
Gadgets.o.displayfield_c:	CPP:h.iterator
Gadgets.o.displayfield_c:	CPP:h.newcasts
Gadgets.o.displayfield_c:	OSLib:oslib.h.gadget
Gadgets.o.displayfield_c:	OSLib:oslib.h.macros
Gadgets.o.displayfield_c:	Gadgets.h.gadget_w_justification
Gadgets.o.displayfield_c:	Gadgets.h.gadget_w_string
Gadgets.o.displayfield_c:	Gadgets.h.gadget_c
Gadgets.o.displayfield_c:	CPP:h.vector
Gadgets.o.displayfield_c:	CPP:h.vectorbase
Gadgets.o.displayfield_c:	CPP:h.utility
Gadgets.o.displayfield_c:	Gadgets.h.gadget_w_font
Gadgets.o.displayfield_t:	Gadgets.c++.displayfield_t
Gadgets.o.displayfield_t:	Gadgets.h.displayfield_t
Gadgets.o.displayfield_t:	Gadgets.h.displayfield_b
Gadgets.o.displayfield_t:	OSLib:oslib.h.displayfield
Gadgets.o.displayfield_t:	OSLib:oslib.h.types
Gadgets.o.displayfield_t:	OSLib:oslib.h.toolbox
Gadgets.o.displayfield_t:	OSLib:oslib.h.os
Gadgets.o.displayfield_t:	OSLib:oslib.h.oscore32
Gadgets.o.displayfield_t:	OSLib:oslib.h.osf32
Gadgets.o.displayfield_t:	OSLib:oslib.h.wimp
Gadgets.o.displayfield_t:	OSLib:oslib.h.osspriteop
Gadgets.o.displayfield_t:	OSLib:oslib.h.font
Gadgets.o.displayfield_t:	OSLib:oslib.h.wimp32
Gadgets.o.displayfield_t:	OSLib:oslib.h.messagetrans
Gadgets.o.displayfield_t:	OSLib:oslib.h.gadget
Gadgets.o.displayfield_t:	Gadgets.h.gadget_b
Gadgets.o.displayfield_t:	CPP:h.string
Gadgets.o.displayfield_t:	CPP:h.bool
Gadgets.o.displayfield_t:	CPP:h.config
Gadgets.o.displayfield_t:	CPP:h.iosfwd
Gadgets.o.displayfield_t:	CPP:h.iterator
Gadgets.o.displayfield_t:	CPP:h.newcasts
Gadgets.o.displayfield_t:	OSLib:oslib.h.gadget
Gadgets.o.displayfield_t:	OSLib:oslib.h.macros
Gadgets.o.displayfield_t:	Gadgets.h.gadget_w_justification
Gadgets.o.displayfield_t:	Gadgets.h.gadget_w_string
Gadgets.o.displayfield_t:	Gadgets.h.gadget_t
Gadgets.o.draggable_b:	Gadgets.c++.draggable_b
Gadgets.o.draggable_b:	Gadgets.h.draggable_b
Gadgets.o.draggable_b:	OSLib:oslib.h.draggable
Gadgets.o.draggable_b:	OSLib:oslib.h.types
Gadgets.o.draggable_b:	OSLib:oslib.h.toolbox
Gadgets.o.draggable_b:	OSLib:oslib.h.os
Gadgets.o.draggable_b:	OSLib:oslib.h.oscore32
Gadgets.o.draggable_b:	OSLib:oslib.h.osf32
Gadgets.o.draggable_b:	OSLib:oslib.h.wimp
Gadgets.o.draggable_b:	OSLib:oslib.h.osspriteop
Gadgets.o.draggable_b:	OSLib:oslib.h.font
Gadgets.o.draggable_b:	OSLib:oslib.h.wimp32
Gadgets.o.draggable_b:	OSLib:oslib.h.messagetrans
Gadgets.o.draggable_b:	OSLib:oslib.h.gadget
Gadgets.o.draggable_b:	OSLib:oslib.h.window
Gadgets.o.draggable_b:	OSLib:oslib.h.keyboardshortcut
Gadgets.o.draggable_b:	Gadgets.h.gadget_b
Gadgets.o.draggable_b:	CPP:h.string
Gadgets.o.draggable_b:	CPP:h.bool
Gadgets.o.draggable_b:	CPP:h.config
Gadgets.o.draggable_b:	CPP:h.iosfwd
Gadgets.o.draggable_b:	CPP:h.iterator
Gadgets.o.draggable_b:	CPP:h.newcasts
Gadgets.o.draggable_b:	OSLib:oslib.h.gadget
Gadgets.o.draggable_b:	OSLib:oslib.h.macros
Gadgets.o.draggable_b:	Gadgets.h.gadget_w_text
Gadgets.o.draggable_c:	Gadgets.c++.draggable_c
Gadgets.o.draggable_c:	Gadgets.h.draggable_c
Gadgets.o.draggable_c:	Gadgets.h.draggable_b
Gadgets.o.draggable_c:	OSLib:oslib.h.draggable
Gadgets.o.draggable_c:	OSLib:oslib.h.types
Gadgets.o.draggable_c:	OSLib:oslib.h.toolbox
Gadgets.o.draggable_c:	OSLib:oslib.h.os
Gadgets.o.draggable_c:	OSLib:oslib.h.oscore32
Gadgets.o.draggable_c:	OSLib:oslib.h.osf32
Gadgets.o.draggable_c:	OSLib:oslib.h.wimp
Gadgets.o.draggable_c:	OSLib:oslib.h.osspriteop
Gadgets.o.draggable_c:	OSLib:oslib.h.font
Gadgets.o.draggable_c:	OSLib:oslib.h.wimp32
Gadgets.o.draggable_c:	OSLib:oslib.h.messagetrans
Gadgets.o.draggable_c:	OSLib:oslib.h.gadget
Gadgets.o.draggable_c:	OSLib:oslib.h.window
Gadgets.o.draggable_c:	OSLib:oslib.h.keyboardshortcut
Gadgets.o.draggable_c:	Gadgets.h.gadget_b
Gadgets.o.draggable_c:	CPP:h.string
Gadgets.o.draggable_c:	CPP:h.bool
Gadgets.o.draggable_c:	CPP:h.config
Gadgets.o.draggable_c:	CPP:h.iosfwd
Gadgets.o.draggable_c:	CPP:h.iterator
Gadgets.o.draggable_c:	CPP:h.newcasts
Gadgets.o.draggable_c:	OSLib:oslib.h.gadget
Gadgets.o.draggable_c:	OSLib:oslib.h.macros
Gadgets.o.draggable_c:	Gadgets.h.gadget_w_text
Gadgets.o.draggable_c:	Gadgets.h.gadget_c
Gadgets.o.draggable_c:	CPP:h.vector
Gadgets.o.draggable_c:	CPP:h.vectorbase
Gadgets.o.draggable_c:	CPP:h.utility
Gadgets.o.draggable_c:	Gadgets.h.gadget_w_boolean
Gadgets.o.draggable_c:	OSLib:oslib.h.macros
Gadgets.o.draggable_c:	OSLib:oslib.h.types
Gadgets.o.draggable_t:	Gadgets.c++.draggable_t
Gadgets.o.draggable_t:	Gadgets.h.draggable_t
Gadgets.o.draggable_t:	Gadgets.h.draggable_b
Gadgets.o.draggable_t:	OSLib:oslib.h.draggable
Gadgets.o.draggable_t:	OSLib:oslib.h.types
Gadgets.o.draggable_t:	OSLib:oslib.h.toolbox
Gadgets.o.draggable_t:	OSLib:oslib.h.os
Gadgets.o.draggable_t:	OSLib:oslib.h.oscore32
Gadgets.o.draggable_t:	OSLib:oslib.h.osf32
Gadgets.o.draggable_t:	OSLib:oslib.h.wimp
Gadgets.o.draggable_t:	OSLib:oslib.h.osspriteop
Gadgets.o.draggable_t:	OSLib:oslib.h.font
Gadgets.o.draggable_t:	OSLib:oslib.h.wimp32
Gadgets.o.draggable_t:	OSLib:oslib.h.messagetrans
Gadgets.o.draggable_t:	OSLib:oslib.h.gadget
Gadgets.o.draggable_t:	OSLib:oslib.h.window
Gadgets.o.draggable_t:	OSLib:oslib.h.keyboardshortcut
Gadgets.o.draggable_t:	Gadgets.h.gadget_b
Gadgets.o.draggable_t:	CPP:h.string
Gadgets.o.draggable_t:	CPP:h.bool
Gadgets.o.draggable_t:	CPP:h.config
Gadgets.o.draggable_t:	CPP:h.iosfwd
Gadgets.o.draggable_t:	CPP:h.iterator
Gadgets.o.draggable_t:	CPP:h.newcasts
Gadgets.o.draggable_t:	OSLib:oslib.h.gadget
Gadgets.o.draggable_t:	OSLib:oslib.h.macros
Gadgets.o.draggable_t:	Gadgets.h.gadget_w_text
Gadgets.o.draggable_t:	Gadgets.h.gadget_t
Gadgets.o.gadget_b:	Gadgets.c++.gadget_b
Gadgets.o.gadget_b:	Gadgets.h.gadget_b
Gadgets.o.gadget_b:	CPP:h.string
Gadgets.o.gadget_b:	CPP:h.bool
Gadgets.o.gadget_b:	CPP:h.config
Gadgets.o.gadget_b:	CPP:h.iosfwd
Gadgets.o.gadget_b:	CPP:h.iterator
Gadgets.o.gadget_b:	CPP:h.newcasts
Gadgets.o.gadget_b:	OSLib:oslib.h.gadget
Gadgets.o.gadget_b:	OSLib:oslib.h.types
Gadgets.o.gadget_b:	OSLib:oslib.h.toolbox
Gadgets.o.gadget_b:	OSLib:oslib.h.os
Gadgets.o.gadget_b:	OSLib:oslib.h.oscore32
Gadgets.o.gadget_b:	OSLib:oslib.h.osf32
Gadgets.o.gadget_b:	OSLib:oslib.h.wimp
Gadgets.o.gadget_b:	OSLib:oslib.h.osspriteop
Gadgets.o.gadget_b:	OSLib:oslib.h.font
Gadgets.o.gadget_b:	OSLib:oslib.h.wimp32
Gadgets.o.gadget_b:	OSLib:oslib.h.messagetrans
Gadgets.o.gadget_b:	OSLib:oslib.h.macros
Gadgets.o.gadget_c:	Gadgets.c++.gadget_c
Gadgets.o.gadget_c:	Gadgets.h.gadget_c
Gadgets.o.gadget_c:	CPP:h.vector
Gadgets.o.gadget_c:	CPP:h.bool
Gadgets.o.gadget_c:	CPP:h.config
Gadgets.o.gadget_c:	CPP:h.iterator
Gadgets.o.gadget_c:	CPP:h.iosfwd
Gadgets.o.gadget_c:	CPP:h.vectorbase
Gadgets.o.gadget_c:	CPP:h.utility
Gadgets.o.gadget_c:	Gadgets.h.gadget_b
Gadgets.o.gadget_c:	CPP:h.string
Gadgets.o.gadget_c:	CPP:h.newcasts
Gadgets.o.gadget_c:	OSLib:oslib.h.gadget
Gadgets.o.gadget_c:	OSLib:oslib.h.types
Gadgets.o.gadget_c:	OSLib:oslib.h.toolbox
Gadgets.o.gadget_c:	OSLib:oslib.h.os
Gadgets.o.gadget_c:	OSLib:oslib.h.oscore32
Gadgets.o.gadget_c:	OSLib:oslib.h.osf32
Gadgets.o.gadget_c:	OSLib:oslib.h.wimp
Gadgets.o.gadget_c:	OSLib:oslib.h.osspriteop
Gadgets.o.gadget_c:	OSLib:oslib.h.font
Gadgets.o.gadget_c:	OSLib:oslib.h.wimp32
Gadgets.o.gadget_c:	OSLib:oslib.h.messagetrans
Gadgets.o.gadget_c:	OSLib:oslib.h.macros
Gadgets.o.gadget_t:	Gadgets.c++.gadget_t
Gadgets.o.gadget_t:	Gadgets.h.gadget_t
Gadgets.o.gadget_t:	Gadgets.h.gadget_b
Gadgets.o.gadget_t:	CPP:h.string
Gadgets.o.gadget_t:	CPP:h.bool
Gadgets.o.gadget_t:	CPP:h.config
Gadgets.o.gadget_t:	CPP:h.iosfwd
Gadgets.o.gadget_t:	CPP:h.iterator
Gadgets.o.gadget_t:	CPP:h.newcasts
Gadgets.o.gadget_t:	OSLib:oslib.h.gadget
Gadgets.o.gadget_t:	OSLib:oslib.h.types
Gadgets.o.gadget_t:	OSLib:oslib.h.toolbox
Gadgets.o.gadget_t:	OSLib:oslib.h.os
Gadgets.o.gadget_t:	OSLib:oslib.h.oscore32
Gadgets.o.gadget_t:	OSLib:oslib.h.osf32
Gadgets.o.gadget_t:	OSLib:oslib.h.wimp
Gadgets.o.gadget_t:	OSLib:oslib.h.osspriteop
Gadgets.o.gadget_t:	OSLib:oslib.h.font
Gadgets.o.gadget_t:	OSLib:oslib.h.wimp32
Gadgets.o.gadget_t:	OSLib:oslib.h.messagetrans
Gadgets.o.gadget_t:	OSLib:oslib.h.macros
Gadgets.o.gadget_w_allowable:	Gadgets.c++.gadget_w_allowable
Gadgets.o.gadget_w_allowable:	Gadgets.h.gadget_w_allowable
Gadgets.o.gadget_w_allowable:	CPP:h.string
Gadgets.o.gadget_w_allowable:	CPP:h.bool
Gadgets.o.gadget_w_allowable:	CPP:h.config
Gadgets.o.gadget_w_allowable:	CPP:h.iosfwd
Gadgets.o.gadget_w_allowable:	CPP:h.iterator
Gadgets.o.gadget_w_allowable:	CPP:h.newcasts
Gadgets.o.gadget_w_boolean:	Gadgets.c++.gadget_w_boolean
Gadgets.o.gadget_w_boolean:	Gadgets.h.gadget_w_boolean
Gadgets.o.gadget_w_boolean:	OSLib:oslib.h.macros
Gadgets.o.gadget_w_boolean:	OSLib:oslib.h.types
Gadgets.o.gadget_w_caret:	Gadgets.c++.gadget_w_caret
Gadgets.o.gadget_w_caret:	Gadgets.h.gadget_w_caret
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.gadget
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.types
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.toolbox
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.os
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.oscore32
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.osf32
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.wimp
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.osspriteop
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.font
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.wimp32
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.messagetrans
Gadgets.o.gadget_w_caret:	OSLib:oslib.h.macros
Gadgets.o.gadget_w_event:	Gadgets.c++.gadget_w_event
Gadgets.o.gadget_w_event:	Gadgets.h.gadget_w_event
Gadgets.o.gadget_w_event:	OSLib:oslib.h.types
Gadgets.o.gadget_w_font:	Gadgets.c++.gadget_w_font
Gadgets.o.gadget_w_font:	Gadgets.h.gadget_w_font
Gadgets.o.gadget_w_font:	CPP:h.string
Gadgets.o.gadget_w_font:	CPP:h.bool
Gadgets.o.gadget_w_font:	CPP:h.config
Gadgets.o.gadget_w_font:	CPP:h.iosfwd
Gadgets.o.gadget_w_font:	CPP:h.iterator
Gadgets.o.gadget_w_font:	CPP:h.newcasts
Gadgets.o.gadget_w_justification:	Gadgets.c++.gadget_w_justification
Gadgets.o.gadget_w_justification:	Gadgets.h.gadget_w_justification
Gadgets.o.gadget_w_number:	Gadgets.c++.gadget_w_number
Gadgets.o.gadget_w_number:	Gadgets.h.gadget_w_number
Gadgets.o.gadget_w_show_c:	Gadgets.c++.gadget_w_show_c
Gadgets.o.gadget_w_show_c:	Gadgets.h.gadget_w_show_c
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.gadget
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.types
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.toolbox
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.os
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.oscore32
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.osf32
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.wimp
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.osspriteop
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.font
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.wimp32
Gadgets.o.gadget_w_show_c:	OSLib:oslib.h.messagetrans
Gadgets.o.gadget_w_show_t:	Gadgets.c++.gadget_w_show_t
Gadgets.o.gadget_w_show_t:	Gadgets.h.gadget_w_show_t
Gadgets.o.gadget_w_show_t:	CPP:h.string
Gadgets.o.gadget_w_show_t:	CPP:h.bool
Gadgets.o.gadget_w_show_t:	CPP:h.config
Gadgets.o.gadget_w_show_t:	CPP:h.iosfwd
Gadgets.o.gadget_w_show_t:	CPP:h.iterator
Gadgets.o.gadget_w_show_t:	CPP:h.newcasts
Gadgets.o.gadget_w_slider:	Gadgets.c++.gadget_w_slider
Gadgets.o.gadget_w_slider:	Gadgets.h.gadget_w_slider
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.wimp
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.types
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.os
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.oscore32
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.osf32
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.osspriteop
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.font
Gadgets.o.gadget_w_slider:	OSLib:oslib.h.wimp32
Gadgets.o.gadget_w_slider:	Gadgets.h.gadget_w_number
Gadgets.o.gadget_w_string:	Gadgets.c++.gadget_w_string
Gadgets.o.gadget_w_string:	Gadgets.h.gadget_w_string
Gadgets.o.gadget_w_string:	CPP:h.string
Gadgets.o.gadget_w_string:	CPP:h.bool
Gadgets.o.gadget_w_string:	CPP:h.config
Gadgets.o.gadget_w_string:	CPP:h.iosfwd
Gadgets.o.gadget_w_string:	CPP:h.iterator
Gadgets.o.gadget_w_string:	CPP:h.newcasts
Gadgets.o.gadget_w_text:	Gadgets.c++.gadget_w_text
Gadgets.o.gadget_w_text:	Gadgets.h.gadget_w_text
Gadgets.o.gadget_w_text:	CPP:h.string
Gadgets.o.gadget_w_text:	CPP:h.bool
Gadgets.o.gadget_w_text:	CPP:h.config
Gadgets.o.gadget_w_text:	CPP:h.iosfwd
Gadgets.o.gadget_w_text:	CPP:h.iterator
Gadgets.o.gadget_w_text:	CPP:h.newcasts
Gadgets.o.labelledbox_b:	Gadgets.c++.labelledbox_b
Gadgets.o.labelledbox_b:	Gadgets.h.labelledbox_b
Gadgets.o.labelledbox_b:	OSLib:oslib.h.labelledbox
Gadgets.o.labelledbox_b:	OSLib:oslib.h.types
Gadgets.o.labelledbox_b:	OSLib:oslib.h.toolbox
Gadgets.o.labelledbox_b:	OSLib:oslib.h.os
Gadgets.o.labelledbox_b:	OSLib:oslib.h.oscore32
Gadgets.o.labelledbox_b:	OSLib:oslib.h.osf32
Gadgets.o.labelledbox_b:	OSLib:oslib.h.wimp
Gadgets.o.labelledbox_b:	OSLib:oslib.h.osspriteop
Gadgets.o.labelledbox_b:	OSLib:oslib.h.font
Gadgets.o.labelledbox_b:	OSLib:oslib.h.wimp32
Gadgets.o.labelledbox_b:	OSLib:oslib.h.messagetrans
Gadgets.o.labelledbox_b:	OSLib:oslib.h.gadget
Gadgets.o.labelledbox_b:	Gadgets.h.gadget_b
Gadgets.o.labelledbox_b:	CPP:h.string
Gadgets.o.labelledbox_b:	CPP:h.bool
Gadgets.o.labelledbox_b:	CPP:h.config
Gadgets.o.labelledbox_b:	CPP:h.iosfwd
Gadgets.o.labelledbox_b:	CPP:h.iterator
Gadgets.o.labelledbox_b:	CPP:h.newcasts
Gadgets.o.labelledbox_b:	OSLib:oslib.h.gadget
Gadgets.o.labelledbox_b:	OSLib:oslib.h.macros
Gadgets.o.labelledbox_c:	Gadgets.c++.labelledbox_c
Gadgets.o.labelledbox_c:	Gadgets.h.labelledbox_c
Gadgets.o.labelledbox_c:	Gadgets.h.gadget_c
Gadgets.o.labelledbox_c:	CPP:h.vector
Gadgets.o.labelledbox_c:	CPP:h.bool
Gadgets.o.labelledbox_c:	CPP:h.config
Gadgets.o.labelledbox_c:	CPP:h.iterator
Gadgets.o.labelledbox_c:	CPP:h.iosfwd
Gadgets.o.labelledbox_c:	CPP:h.vectorbase
Gadgets.o.labelledbox_c:	CPP:h.utility
Gadgets.o.labelledbox_c:	Gadgets.h.gadget_b
Gadgets.o.labelledbox_c:	CPP:h.string
Gadgets.o.labelledbox_c:	CPP:h.newcasts
Gadgets.o.labelledbox_c:	OSLib:oslib.h.gadget
Gadgets.o.labelledbox_c:	OSLib:oslib.h.types
Gadgets.o.labelledbox_c:	OSLib:oslib.h.toolbox
Gadgets.o.labelledbox_c:	OSLib:oslib.h.os
Gadgets.o.labelledbox_c:	OSLib:oslib.h.oscore32
Gadgets.o.labelledbox_c:	OSLib:oslib.h.osf32
Gadgets.o.labelledbox_c:	OSLib:oslib.h.wimp
Gadgets.o.labelledbox_c:	OSLib:oslib.h.osspriteop
Gadgets.o.labelledbox_c:	OSLib:oslib.h.font
Gadgets.o.labelledbox_c:	OSLib:oslib.h.wimp32
Gadgets.o.labelledbox_c:	OSLib:oslib.h.messagetrans
Gadgets.o.labelledbox_c:	OSLib:oslib.h.macros
Gadgets.o.labelledbox_c:	Gadgets.h.labelledbox_b
Gadgets.o.labelledbox_c:	OSLib:oslib.h.labelledbox
Gadgets.o.labelledbox_t:	Gadgets.c++.labelledbox_t
Gadgets.o.labelledbox_t:	Gadgets.h.labelledbox_t
Gadgets.o.labelledbox_t:	Gadgets.h.gadget_t
Gadgets.o.labelledbox_t:	Gadgets.h.gadget_b
Gadgets.o.labelledbox_t:	CPP:h.string
Gadgets.o.labelledbox_t:	CPP:h.bool
Gadgets.o.labelledbox_t:	CPP:h.config
Gadgets.o.labelledbox_t:	CPP:h.iosfwd
Gadgets.o.labelledbox_t:	CPP:h.iterator
Gadgets.o.labelledbox_t:	CPP:h.newcasts
Gadgets.o.labelledbox_t:	OSLib:oslib.h.gadget
Gadgets.o.labelledbox_t:	OSLib:oslib.h.types
Gadgets.o.labelledbox_t:	OSLib:oslib.h.toolbox
Gadgets.o.labelledbox_t:	OSLib:oslib.h.os
Gadgets.o.labelledbox_t:	OSLib:oslib.h.oscore32
Gadgets.o.labelledbox_t:	OSLib:oslib.h.osf32
Gadgets.o.labelledbox_t:	OSLib:oslib.h.wimp
Gadgets.o.labelledbox_t:	OSLib:oslib.h.osspriteop
Gadgets.o.labelledbox_t:	OSLib:oslib.h.font
Gadgets.o.labelledbox_t:	OSLib:oslib.h.wimp32
Gadgets.o.labelledbox_t:	OSLib:oslib.h.messagetrans
Gadgets.o.labelledbox_t:	OSLib:oslib.h.macros
Gadgets.o.labelledbox_t:	Gadgets.h.gadget_w_text
Gadgets.o.labelledbox_t:	Gadgets.h.labelledbox_b
Gadgets.o.labelledbox_t:	OSLib:oslib.h.labelledbox
Gadgets.o.label_b:	Gadgets.c++.label_b
Gadgets.o.label_b:	Gadgets.h.label_b
Gadgets.o.label_b:	OSLib:oslib.h.label
Gadgets.o.label_b:	OSLib:oslib.h.types
Gadgets.o.label_b:	OSLib:oslib.h.toolbox
Gadgets.o.label_b:	OSLib:oslib.h.os
Gadgets.o.label_b:	OSLib:oslib.h.oscore32
Gadgets.o.label_b:	OSLib:oslib.h.osf32
Gadgets.o.label_b:	OSLib:oslib.h.wimp
Gadgets.o.label_b:	OSLib:oslib.h.osspriteop
Gadgets.o.label_b:	OSLib:oslib.h.font
Gadgets.o.label_b:	OSLib:oslib.h.wimp32
Gadgets.o.label_b:	OSLib:oslib.h.messagetrans
Gadgets.o.label_b:	OSLib:oslib.h.gadget
Gadgets.o.label_b:	Gadgets.h.gadget_b
Gadgets.o.label_b:	CPP:h.string
Gadgets.o.label_b:	CPP:h.bool
Gadgets.o.label_b:	CPP:h.config
Gadgets.o.label_b:	CPP:h.iosfwd
Gadgets.o.label_b:	CPP:h.iterator
Gadgets.o.label_b:	CPP:h.newcasts
Gadgets.o.label_b:	OSLib:oslib.h.gadget
Gadgets.o.label_b:	OSLib:oslib.h.macros
Gadgets.o.label_b:	Gadgets.h.gadget_w_justification
Gadgets.o.label_c:	Gadgets.c++.label_c
Gadgets.o.label_c:	Gadgets.h.label_c
Gadgets.o.label_c:	Gadgets.h.gadget_c
Gadgets.o.label_c:	CPP:h.vector
Gadgets.o.label_c:	CPP:h.bool
Gadgets.o.label_c:	CPP:h.config
Gadgets.o.label_c:	CPP:h.iterator
Gadgets.o.label_c:	CPP:h.iosfwd
Gadgets.o.label_c:	CPP:h.vectorbase
Gadgets.o.label_c:	CPP:h.utility
Gadgets.o.label_c:	Gadgets.h.gadget_b
Gadgets.o.label_c:	CPP:h.string
Gadgets.o.label_c:	CPP:h.newcasts
Gadgets.o.label_c:	OSLib:oslib.h.gadget
Gadgets.o.label_c:	OSLib:oslib.h.types
Gadgets.o.label_c:	OSLib:oslib.h.toolbox
Gadgets.o.label_c:	OSLib:oslib.h.os
Gadgets.o.label_c:	OSLib:oslib.h.oscore32
Gadgets.o.label_c:	OSLib:oslib.h.osf32
Gadgets.o.label_c:	OSLib:oslib.h.wimp
Gadgets.o.label_c:	OSLib:oslib.h.osspriteop
Gadgets.o.label_c:	OSLib:oslib.h.font
Gadgets.o.label_c:	OSLib:oslib.h.wimp32
Gadgets.o.label_c:	OSLib:oslib.h.messagetrans
Gadgets.o.label_c:	OSLib:oslib.h.macros
Gadgets.o.label_c:	Gadgets.h.label_b
Gadgets.o.label_c:	OSLib:oslib.h.label
Gadgets.o.label_c:	Gadgets.h.gadget_w_justification
Gadgets.o.label_t:	Gadgets.c++.label_t
Gadgets.o.label_t:	Gadgets.h.label_t
Gadgets.o.label_t:	Gadgets.h.gadget_t
Gadgets.o.label_t:	Gadgets.h.gadget_b
Gadgets.o.label_t:	CPP:h.string
Gadgets.o.label_t:	CPP:h.bool
Gadgets.o.label_t:	CPP:h.config
Gadgets.o.label_t:	CPP:h.iosfwd
Gadgets.o.label_t:	CPP:h.iterator
Gadgets.o.label_t:	CPP:h.newcasts
Gadgets.o.label_t:	OSLib:oslib.h.gadget
Gadgets.o.label_t:	OSLib:oslib.h.types
Gadgets.o.label_t:	OSLib:oslib.h.toolbox
Gadgets.o.label_t:	OSLib:oslib.h.os
Gadgets.o.label_t:	OSLib:oslib.h.oscore32
Gadgets.o.label_t:	OSLib:oslib.h.osf32
Gadgets.o.label_t:	OSLib:oslib.h.wimp
Gadgets.o.label_t:	OSLib:oslib.h.osspriteop
Gadgets.o.label_t:	OSLib:oslib.h.font
Gadgets.o.label_t:	OSLib:oslib.h.wimp32
Gadgets.o.label_t:	OSLib:oslib.h.messagetrans
Gadgets.o.label_t:	OSLib:oslib.h.macros
Gadgets.o.label_t:	Gadgets.h.gadget_w_text
Gadgets.o.label_t:	Gadgets.h.label_b
Gadgets.o.label_t:	OSLib:oslib.h.label
Gadgets.o.label_t:	Gadgets.h.gadget_w_justification
Gadgets.o.numberrange_b:	Gadgets.c++.numberrange_b
Gadgets.o.numberrange_b:	Gadgets.h.numberrange_b
Gadgets.o.numberrange_b:	OSLib:oslib.h.numberrange
Gadgets.o.numberrange_b:	OSLib:oslib.h.types
Gadgets.o.numberrange_b:	OSLib:oslib.h.toolbox
Gadgets.o.numberrange_b:	OSLib:oslib.h.os
Gadgets.o.numberrange_b:	OSLib:oslib.h.oscore32
Gadgets.o.numberrange_b:	OSLib:oslib.h.osf32
Gadgets.o.numberrange_b:	OSLib:oslib.h.wimp
Gadgets.o.numberrange_b:	OSLib:oslib.h.osspriteop
Gadgets.o.numberrange_b:	OSLib:oslib.h.font
Gadgets.o.numberrange_b:	OSLib:oslib.h.wimp32
Gadgets.o.numberrange_b:	OSLib:oslib.h.messagetrans
Gadgets.o.numberrange_b:	OSLib:oslib.h.gadget
Gadgets.o.numberrange_b:	Gadgets.h.gadget_b
Gadgets.o.numberrange_b:	CPP:h.string
Gadgets.o.numberrange_b:	CPP:h.bool
Gadgets.o.numberrange_b:	CPP:h.config
Gadgets.o.numberrange_b:	CPP:h.iosfwd
Gadgets.o.numberrange_b:	CPP:h.iterator
Gadgets.o.numberrange_b:	CPP:h.newcasts
Gadgets.o.numberrange_b:	OSLib:oslib.h.gadget
Gadgets.o.numberrange_b:	OSLib:oslib.h.macros
Gadgets.o.numberrange_b:	Gadgets.h.gadget_w_justification
Gadgets.o.numberrange_b:	Gadgets.h.gadget_w_slider
Gadgets.o.numberrange_b:	OSLib:oslib.h.wimp
Gadgets.o.numberrange_b:	Gadgets.h.gadget_w_number
Gadgets.o.numberrange_c:	Gadgets.c++.numberrange_c
Gadgets.o.numberrange_c:	Gadgets.h.numberrange_c
Gadgets.o.numberrange_c:	Gadgets.h.gadget_c
Gadgets.o.numberrange_c:	CPP:h.vector
Gadgets.o.numberrange_c:	CPP:h.bool
Gadgets.o.numberrange_c:	CPP:h.config
Gadgets.o.numberrange_c:	CPP:h.iterator
Gadgets.o.numberrange_c:	CPP:h.iosfwd
Gadgets.o.numberrange_c:	CPP:h.vectorbase
Gadgets.o.numberrange_c:	CPP:h.utility
Gadgets.o.numberrange_c:	Gadgets.h.gadget_b
Gadgets.o.numberrange_c:	CPP:h.string
Gadgets.o.numberrange_c:	CPP:h.newcasts
Gadgets.o.numberrange_c:	OSLib:oslib.h.gadget
Gadgets.o.numberrange_c:	OSLib:oslib.h.types
Gadgets.o.numberrange_c:	OSLib:oslib.h.toolbox
Gadgets.o.numberrange_c:	OSLib:oslib.h.os
Gadgets.o.numberrange_c:	OSLib:oslib.h.oscore32
Gadgets.o.numberrange_c:	OSLib:oslib.h.osf32
Gadgets.o.numberrange_c:	OSLib:oslib.h.wimp
Gadgets.o.numberrange_c:	OSLib:oslib.h.osspriteop
Gadgets.o.numberrange_c:	OSLib:oslib.h.font
Gadgets.o.numberrange_c:	OSLib:oslib.h.wimp32
Gadgets.o.numberrange_c:	OSLib:oslib.h.messagetrans
Gadgets.o.numberrange_c:	OSLib:oslib.h.macros
Gadgets.o.numberrange_c:	Gadgets.h.numberrange_b
Gadgets.o.numberrange_c:	OSLib:oslib.h.numberrange
Gadgets.o.numberrange_c:	Gadgets.h.gadget_w_justification
Gadgets.o.numberrange_c:	Gadgets.h.gadget_w_slider
Gadgets.o.numberrange_c:	OSLib:oslib.h.wimp
Gadgets.o.numberrange_c:	Gadgets.h.gadget_w_number
Gadgets.o.numberrange_t:	Gadgets.c++.numberrange_t
Gadgets.o.numberrange_t:	Gadgets.h.numberrange_t
Gadgets.o.numberrange_t:	Gadgets.h.gadget_t
Gadgets.o.numberrange_t:	Gadgets.h.gadget_b
Gadgets.o.numberrange_t:	CPP:h.string
Gadgets.o.numberrange_t:	CPP:h.bool
Gadgets.o.numberrange_t:	CPP:h.config
Gadgets.o.numberrange_t:	CPP:h.iosfwd
Gadgets.o.numberrange_t:	CPP:h.iterator
Gadgets.o.numberrange_t:	CPP:h.newcasts
Gadgets.o.numberrange_t:	OSLib:oslib.h.gadget
Gadgets.o.numberrange_t:	OSLib:oslib.h.types
Gadgets.o.numberrange_t:	OSLib:oslib.h.toolbox
Gadgets.o.numberrange_t:	OSLib:oslib.h.os
Gadgets.o.numberrange_t:	OSLib:oslib.h.oscore32
Gadgets.o.numberrange_t:	OSLib:oslib.h.osf32
Gadgets.o.numberrange_t:	OSLib:oslib.h.wimp
Gadgets.o.numberrange_t:	OSLib:oslib.h.osspriteop
Gadgets.o.numberrange_t:	OSLib:oslib.h.font
Gadgets.o.numberrange_t:	OSLib:oslib.h.wimp32
Gadgets.o.numberrange_t:	OSLib:oslib.h.messagetrans
Gadgets.o.numberrange_t:	OSLib:oslib.h.macros
Gadgets.o.numberrange_t:	Gadgets.h.gadget_w_caret
Gadgets.o.numberrange_t:	OSLib:oslib.h.gadget
Gadgets.o.numberrange_t:	OSLib:oslib.h.macros
Gadgets.o.numberrange_t:	Gadgets.h.numberrange_b
Gadgets.o.numberrange_t:	OSLib:oslib.h.numberrange
Gadgets.o.numberrange_t:	Gadgets.h.gadget_w_justification
Gadgets.o.numberrange_t:	Gadgets.h.gadget_w_slider
Gadgets.o.numberrange_t:	OSLib:oslib.h.wimp
Gadgets.o.numberrange_t:	Gadgets.h.gadget_w_number
Gadgets.o.optionbutton_b:	Gadgets.c++.optionbutton_b
Gadgets.o.optionbutton_b:	Gadgets.h.optionbutton_b
Gadgets.o.optionbutton_b:	OSLib:oslib.h.optionbutton
Gadgets.o.optionbutton_b:	OSLib:oslib.h.types
Gadgets.o.optionbutton_b:	OSLib:oslib.h.toolbox
Gadgets.o.optionbutton_b:	OSLib:oslib.h.os
Gadgets.o.optionbutton_b:	OSLib:oslib.h.oscore32
Gadgets.o.optionbutton_b:	OSLib:oslib.h.osf32
Gadgets.o.optionbutton_b:	OSLib:oslib.h.wimp
Gadgets.o.optionbutton_b:	OSLib:oslib.h.osspriteop
Gadgets.o.optionbutton_b:	OSLib:oslib.h.font
Gadgets.o.optionbutton_b:	OSLib:oslib.h.wimp32
Gadgets.o.optionbutton_b:	OSLib:oslib.h.messagetrans
Gadgets.o.optionbutton_b:	OSLib:oslib.h.gadget
Gadgets.o.optionbutton_b:	Gadgets.h.gadget_b
Gadgets.o.optionbutton_b:	CPP:h.string
Gadgets.o.optionbutton_b:	CPP:h.bool
Gadgets.o.optionbutton_b:	CPP:h.config
Gadgets.o.optionbutton_b:	CPP:h.iosfwd
Gadgets.o.optionbutton_b:	CPP:h.iterator
Gadgets.o.optionbutton_b:	CPP:h.newcasts
Gadgets.o.optionbutton_b:	OSLib:oslib.h.gadget
Gadgets.o.optionbutton_b:	OSLib:oslib.h.macros
Gadgets.o.optionbutton_b:	Gadgets.h.gadget_w_boolean
Gadgets.o.optionbutton_b:	OSLib:oslib.h.macros
Gadgets.o.optionbutton_b:	OSLib:oslib.h.types
Gadgets.o.optionbutton_b:	Gadgets.h.gadget_w_event
Gadgets.o.optionbutton_b:	OSLib:oslib.h.types
Gadgets.o.optionbutton_b:	Gadgets.h.gadget_w_text
Gadgets.o.optionbutton_c:	Gadgets.c++.optionbutton_c
Gadgets.o.optionbutton_c:	Gadgets.h.optionbutton_c
Gadgets.o.optionbutton_c:	Gadgets.h.gadget_c
Gadgets.o.optionbutton_c:	CPP:h.vector
Gadgets.o.optionbutton_c:	CPP:h.bool
Gadgets.o.optionbutton_c:	CPP:h.config
Gadgets.o.optionbutton_c:	CPP:h.iterator
Gadgets.o.optionbutton_c:	CPP:h.iosfwd
Gadgets.o.optionbutton_c:	CPP:h.vectorbase
Gadgets.o.optionbutton_c:	CPP:h.utility
Gadgets.o.optionbutton_c:	Gadgets.h.gadget_b
Gadgets.o.optionbutton_c:	CPP:h.string
Gadgets.o.optionbutton_c:	CPP:h.newcasts
Gadgets.o.optionbutton_c:	OSLib:oslib.h.gadget
Gadgets.o.optionbutton_c:	OSLib:oslib.h.types
Gadgets.o.optionbutton_c:	OSLib:oslib.h.toolbox
Gadgets.o.optionbutton_c:	OSLib:oslib.h.os
Gadgets.o.optionbutton_c:	OSLib:oslib.h.oscore32
Gadgets.o.optionbutton_c:	OSLib:oslib.h.osf32
Gadgets.o.optionbutton_c:	OSLib:oslib.h.wimp
Gadgets.o.optionbutton_c:	OSLib:oslib.h.osspriteop
Gadgets.o.optionbutton_c:	OSLib:oslib.h.font
Gadgets.o.optionbutton_c:	OSLib:oslib.h.wimp32
Gadgets.o.optionbutton_c:	OSLib:oslib.h.messagetrans
Gadgets.o.optionbutton_c:	OSLib:oslib.h.macros
Gadgets.o.optionbutton_c:	Gadgets.h.optionbutton_b
Gadgets.o.optionbutton_c:	OSLib:oslib.h.optionbutton
Gadgets.o.optionbutton_c:	Gadgets.h.gadget_w_boolean
Gadgets.o.optionbutton_c:	OSLib:oslib.h.macros
Gadgets.o.optionbutton_c:	OSLib:oslib.h.types
Gadgets.o.optionbutton_c:	Gadgets.h.gadget_w_event
Gadgets.o.optionbutton_c:	OSLib:oslib.h.types
Gadgets.o.optionbutton_c:	Gadgets.h.gadget_w_text
Gadgets.o.optionbutton_t:	Gadgets.c++.optionbutton_t
Gadgets.o.optionbutton_t:	Gadgets.h.optionbutton_t
Gadgets.o.optionbutton_t:	Gadgets.h.gadget_t
Gadgets.o.optionbutton_t:	Gadgets.h.gadget_b
Gadgets.o.optionbutton_t:	CPP:h.string
Gadgets.o.optionbutton_t:	CPP:h.bool
Gadgets.o.optionbutton_t:	CPP:h.config
Gadgets.o.optionbutton_t:	CPP:h.iosfwd
Gadgets.o.optionbutton_t:	CPP:h.iterator
Gadgets.o.optionbutton_t:	CPP:h.newcasts
Gadgets.o.optionbutton_t:	OSLib:oslib.h.gadget
Gadgets.o.optionbutton_t:	OSLib:oslib.h.types
Gadgets.o.optionbutton_t:	OSLib:oslib.h.toolbox
Gadgets.o.optionbutton_t:	OSLib:oslib.h.os
Gadgets.o.optionbutton_t:	OSLib:oslib.h.oscore32
Gadgets.o.optionbutton_t:	OSLib:oslib.h.osf32
Gadgets.o.optionbutton_t:	OSLib:oslib.h.wimp
Gadgets.o.optionbutton_t:	OSLib:oslib.h.osspriteop
Gadgets.o.optionbutton_t:	OSLib:oslib.h.font
Gadgets.o.optionbutton_t:	OSLib:oslib.h.wimp32
Gadgets.o.optionbutton_t:	OSLib:oslib.h.messagetrans
Gadgets.o.optionbutton_t:	OSLib:oslib.h.macros
Gadgets.o.optionbutton_t:	Gadgets.h.optionbutton_b
Gadgets.o.optionbutton_t:	OSLib:oslib.h.optionbutton
Gadgets.o.optionbutton_t:	Gadgets.h.gadget_w_boolean
Gadgets.o.optionbutton_t:	OSLib:oslib.h.macros
Gadgets.o.optionbutton_t:	OSLib:oslib.h.types
Gadgets.o.optionbutton_t:	Gadgets.h.gadget_w_event
Gadgets.o.optionbutton_t:	OSLib:oslib.h.types
Gadgets.o.optionbutton_t:	Gadgets.h.gadget_w_text
Gadgets.o.popup_b:	Gadgets.c++.popup_b
Gadgets.o.popup_b:	Gadgets.h.popup_b
Gadgets.o.popup_b:	OSLib:oslib.h.popup
Gadgets.o.popup_b:	OSLib:oslib.h.types
Gadgets.o.popup_b:	OSLib:oslib.h.toolbox
Gadgets.o.popup_b:	OSLib:oslib.h.os
Gadgets.o.popup_b:	OSLib:oslib.h.oscore32
Gadgets.o.popup_b:	OSLib:oslib.h.osf32
Gadgets.o.popup_b:	OSLib:oslib.h.wimp
Gadgets.o.popup_b:	OSLib:oslib.h.osspriteop
Gadgets.o.popup_b:	OSLib:oslib.h.font
Gadgets.o.popup_b:	OSLib:oslib.h.wimp32
Gadgets.o.popup_b:	OSLib:oslib.h.messagetrans
Gadgets.o.popup_b:	OSLib:oslib.h.gadget
Gadgets.o.popup_b:	Gadgets.h.gadget_b
Gadgets.o.popup_b:	CPP:h.string
Gadgets.o.popup_b:	CPP:h.bool
Gadgets.o.popup_b:	CPP:h.config
Gadgets.o.popup_b:	CPP:h.iosfwd
Gadgets.o.popup_b:	CPP:h.iterator
Gadgets.o.popup_b:	CPP:h.newcasts
Gadgets.o.popup_b:	OSLib:oslib.h.gadget
Gadgets.o.popup_b:	OSLib:oslib.h.macros
Gadgets.o.popup_c:	Gadgets.c++.popup_c
Gadgets.o.popup_c:	Gadgets.h.popup_c
Gadgets.o.popup_c:	Gadgets.h.popup_b
Gadgets.o.popup_c:	OSLib:oslib.h.popup
Gadgets.o.popup_c:	OSLib:oslib.h.types
Gadgets.o.popup_c:	OSLib:oslib.h.toolbox
Gadgets.o.popup_c:	OSLib:oslib.h.os
Gadgets.o.popup_c:	OSLib:oslib.h.oscore32
Gadgets.o.popup_c:	OSLib:oslib.h.osf32
Gadgets.o.popup_c:	OSLib:oslib.h.wimp
Gadgets.o.popup_c:	OSLib:oslib.h.osspriteop
Gadgets.o.popup_c:	OSLib:oslib.h.font
Gadgets.o.popup_c:	OSLib:oslib.h.wimp32
Gadgets.o.popup_c:	OSLib:oslib.h.messagetrans
Gadgets.o.popup_c:	OSLib:oslib.h.gadget
Gadgets.o.popup_c:	Gadgets.h.gadget_b
Gadgets.o.popup_c:	CPP:h.string
Gadgets.o.popup_c:	CPP:h.bool
Gadgets.o.popup_c:	CPP:h.config
Gadgets.o.popup_c:	CPP:h.iosfwd
Gadgets.o.popup_c:	CPP:h.iterator
Gadgets.o.popup_c:	CPP:h.newcasts
Gadgets.o.popup_c:	OSLib:oslib.h.gadget
Gadgets.o.popup_c:	OSLib:oslib.h.macros
Gadgets.o.popup_c:	Gadgets.h.gadget_c
Gadgets.o.popup_c:	CPP:h.vector
Gadgets.o.popup_c:	CPP:h.vectorbase
Gadgets.o.popup_c:	CPP:h.utility
Gadgets.o.popup_c:	Gadgets.h.gadget_w_show_c
Gadgets.o.popup_c:	OSLib:oslib.h.gadget
Gadgets.o.popup_t:	Gadgets.c++.popup_t
Gadgets.o.popup_t:	Gadgets.h.popup_t
Gadgets.o.popup_t:	Gadgets.h.popup_b
Gadgets.o.popup_t:	OSLib:oslib.h.popup
Gadgets.o.popup_t:	OSLib:oslib.h.types
Gadgets.o.popup_t:	OSLib:oslib.h.toolbox
Gadgets.o.popup_t:	OSLib:oslib.h.os
Gadgets.o.popup_t:	OSLib:oslib.h.oscore32
Gadgets.o.popup_t:	OSLib:oslib.h.osf32
Gadgets.o.popup_t:	OSLib:oslib.h.wimp
Gadgets.o.popup_t:	OSLib:oslib.h.osspriteop
Gadgets.o.popup_t:	OSLib:oslib.h.font
Gadgets.o.popup_t:	OSLib:oslib.h.wimp32
Gadgets.o.popup_t:	OSLib:oslib.h.messagetrans
Gadgets.o.popup_t:	OSLib:oslib.h.gadget
Gadgets.o.popup_t:	Gadgets.h.gadget_b
Gadgets.o.popup_t:	CPP:h.string
Gadgets.o.popup_t:	CPP:h.bool
Gadgets.o.popup_t:	CPP:h.config
Gadgets.o.popup_t:	CPP:h.iosfwd
Gadgets.o.popup_t:	CPP:h.iterator
Gadgets.o.popup_t:	CPP:h.newcasts
Gadgets.o.popup_t:	OSLib:oslib.h.gadget
Gadgets.o.popup_t:	OSLib:oslib.h.macros
Gadgets.o.popup_t:	Gadgets.h.gadget_t
Gadgets.o.popup_t:	Gadgets.h.gadget_w_show_t
Gadgets.o.radiobutton_b:	Gadgets.c++.radiobutton_b
Gadgets.o.radiobutton_b:	Gadgets.h.radiobutton_b
Gadgets.o.radiobutton_b:	OSLib:oslib.h.radiobutton
Gadgets.o.radiobutton_b:	OSLib:oslib.h.types
Gadgets.o.radiobutton_b:	OSLib:oslib.h.toolbox
Gadgets.o.radiobutton_b:	OSLib:oslib.h.os
Gadgets.o.radiobutton_b:	OSLib:oslib.h.oscore32
Gadgets.o.radiobutton_b:	OSLib:oslib.h.osf32
Gadgets.o.radiobutton_b:	OSLib:oslib.h.wimp
Gadgets.o.radiobutton_b:	OSLib:oslib.h.osspriteop
Gadgets.o.radiobutton_b:	OSLib:oslib.h.font
Gadgets.o.radiobutton_b:	OSLib:oslib.h.wimp32
Gadgets.o.radiobutton_b:	OSLib:oslib.h.messagetrans
Gadgets.o.radiobutton_b:	OSLib:oslib.h.gadget
Gadgets.o.radiobutton_b:	Gadgets.h.gadget_b
Gadgets.o.radiobutton_b:	CPP:h.string
Gadgets.o.radiobutton_b:	CPP:h.bool
Gadgets.o.radiobutton_b:	CPP:h.config
Gadgets.o.radiobutton_b:	CPP:h.iosfwd
Gadgets.o.radiobutton_b:	CPP:h.iterator
Gadgets.o.radiobutton_b:	CPP:h.newcasts
Gadgets.o.radiobutton_b:	OSLib:oslib.h.gadget
Gadgets.o.radiobutton_b:	OSLib:oslib.h.macros
Gadgets.o.radiobutton_b:	Gadgets.h.gadget_w_boolean
Gadgets.o.radiobutton_b:	OSLib:oslib.h.macros
Gadgets.o.radiobutton_b:	OSLib:oslib.h.types
Gadgets.o.radiobutton_b:	Gadgets.h.gadget_w_event
Gadgets.o.radiobutton_b:	OSLib:oslib.h.types
Gadgets.o.radiobutton_b:	Gadgets.h.gadget_w_text
Gadgets.o.radiobutton_c:	Gadgets.c++.radiobutton_c
Gadgets.o.radiobutton_c:	Gadgets.h.radiobutton_c
Gadgets.o.radiobutton_c:	Gadgets.h.gadget_c
Gadgets.o.radiobutton_c:	CPP:h.vector
Gadgets.o.radiobutton_c:	CPP:h.bool
Gadgets.o.radiobutton_c:	CPP:h.config
Gadgets.o.radiobutton_c:	CPP:h.iterator
Gadgets.o.radiobutton_c:	CPP:h.iosfwd
Gadgets.o.radiobutton_c:	CPP:h.vectorbase
Gadgets.o.radiobutton_c:	CPP:h.utility
Gadgets.o.radiobutton_c:	Gadgets.h.gadget_b
Gadgets.o.radiobutton_c:	CPP:h.string
Gadgets.o.radiobutton_c:	CPP:h.newcasts
Gadgets.o.radiobutton_c:	OSLib:oslib.h.gadget
Gadgets.o.radiobutton_c:	OSLib:oslib.h.types
Gadgets.o.radiobutton_c:	OSLib:oslib.h.toolbox
Gadgets.o.radiobutton_c:	OSLib:oslib.h.os
Gadgets.o.radiobutton_c:	OSLib:oslib.h.oscore32
Gadgets.o.radiobutton_c:	OSLib:oslib.h.osf32
Gadgets.o.radiobutton_c:	OSLib:oslib.h.wimp
Gadgets.o.radiobutton_c:	OSLib:oslib.h.osspriteop
Gadgets.o.radiobutton_c:	OSLib:oslib.h.font
Gadgets.o.radiobutton_c:	OSLib:oslib.h.wimp32
Gadgets.o.radiobutton_c:	OSLib:oslib.h.messagetrans
Gadgets.o.radiobutton_c:	OSLib:oslib.h.macros
Gadgets.o.radiobutton_c:	Gadgets.h.radiobutton_b
Gadgets.o.radiobutton_c:	OSLib:oslib.h.radiobutton
Gadgets.o.radiobutton_c:	Gadgets.h.gadget_w_boolean
Gadgets.o.radiobutton_c:	OSLib:oslib.h.macros
Gadgets.o.radiobutton_c:	OSLib:oslib.h.types
Gadgets.o.radiobutton_c:	Gadgets.h.gadget_w_event
Gadgets.o.radiobutton_c:	OSLib:oslib.h.types
Gadgets.o.radiobutton_c:	Gadgets.h.gadget_w_text
Gadgets.o.radiobutton_t:	Gadgets.c++.radiobutton_t
Gadgets.o.radiobutton_t:	Gadgets.h.radiobutton_t
Gadgets.o.radiobutton_t:	Gadgets.h.gadget_t
Gadgets.o.radiobutton_t:	Gadgets.h.gadget_b
Gadgets.o.radiobutton_t:	CPP:h.string
Gadgets.o.radiobutton_t:	CPP:h.bool
Gadgets.o.radiobutton_t:	CPP:h.config
Gadgets.o.radiobutton_t:	CPP:h.iosfwd
Gadgets.o.radiobutton_t:	CPP:h.iterator
Gadgets.o.radiobutton_t:	CPP:h.newcasts
Gadgets.o.radiobutton_t:	OSLib:oslib.h.gadget
Gadgets.o.radiobutton_t:	OSLib:oslib.h.types
Gadgets.o.radiobutton_t:	OSLib:oslib.h.toolbox
Gadgets.o.radiobutton_t:	OSLib:oslib.h.os
Gadgets.o.radiobutton_t:	OSLib:oslib.h.oscore32
Gadgets.o.radiobutton_t:	OSLib:oslib.h.osf32
Gadgets.o.radiobutton_t:	OSLib:oslib.h.wimp
Gadgets.o.radiobutton_t:	OSLib:oslib.h.osspriteop
Gadgets.o.radiobutton_t:	OSLib:oslib.h.font
Gadgets.o.radiobutton_t:	OSLib:oslib.h.wimp32
Gadgets.o.radiobutton_t:	OSLib:oslib.h.messagetrans
Gadgets.o.radiobutton_t:	OSLib:oslib.h.macros
Gadgets.o.radiobutton_t:	Gadgets.h.radiobutton_b
Gadgets.o.radiobutton_t:	OSLib:oslib.h.radiobutton
Gadgets.o.radiobutton_t:	Gadgets.h.gadget_w_boolean
Gadgets.o.radiobutton_t:	OSLib:oslib.h.macros
Gadgets.o.radiobutton_t:	OSLib:oslib.h.types
Gadgets.o.radiobutton_t:	Gadgets.h.gadget_w_event
Gadgets.o.radiobutton_t:	OSLib:oslib.h.types
Gadgets.o.radiobutton_t:	Gadgets.h.gadget_w_text
Gadgets.o.slider_b:	Gadgets.c++.slider_b
Gadgets.o.slider_b:	Gadgets.h.slider_b
Gadgets.o.slider_b:	OSLib:oslib.h.slider
Gadgets.o.slider_b:	OSLib:oslib.h.types
Gadgets.o.slider_b:	OSLib:oslib.h.toolbox
Gadgets.o.slider_b:	OSLib:oslib.h.os
Gadgets.o.slider_b:	OSLib:oslib.h.oscore32
Gadgets.o.slider_b:	OSLib:oslib.h.osf32
Gadgets.o.slider_b:	OSLib:oslib.h.wimp
Gadgets.o.slider_b:	OSLib:oslib.h.osspriteop
Gadgets.o.slider_b:	OSLib:oslib.h.font
Gadgets.o.slider_b:	OSLib:oslib.h.wimp32
Gadgets.o.slider_b:	OSLib:oslib.h.messagetrans
Gadgets.o.slider_b:	OSLib:oslib.h.gadget
Gadgets.o.slider_b:	Gadgets.h.gadget_b
Gadgets.o.slider_b:	CPP:h.string
Gadgets.o.slider_b:	CPP:h.bool
Gadgets.o.slider_b:	CPP:h.config
Gadgets.o.slider_b:	CPP:h.iosfwd
Gadgets.o.slider_b:	CPP:h.iterator
Gadgets.o.slider_b:	CPP:h.newcasts
Gadgets.o.slider_b:	OSLib:oslib.h.gadget
Gadgets.o.slider_b:	OSLib:oslib.h.macros
Gadgets.o.slider_b:	Gadgets.h.gadget_w_slider
Gadgets.o.slider_b:	OSLib:oslib.h.wimp
Gadgets.o.slider_b:	Gadgets.h.gadget_w_number
Gadgets.o.slider_c:	Gadgets.c++.slider_c
Gadgets.o.slider_c:	Gadgets.h.slider_c
Gadgets.o.slider_c:	Gadgets.h.gadget_c
Gadgets.o.slider_c:	CPP:h.vector
Gadgets.o.slider_c:	CPP:h.bool
Gadgets.o.slider_c:	CPP:h.config
Gadgets.o.slider_c:	CPP:h.iterator
Gadgets.o.slider_c:	CPP:h.iosfwd
Gadgets.o.slider_c:	CPP:h.vectorbase
Gadgets.o.slider_c:	CPP:h.utility
Gadgets.o.slider_c:	Gadgets.h.gadget_b
Gadgets.o.slider_c:	CPP:h.string
Gadgets.o.slider_c:	CPP:h.newcasts
Gadgets.o.slider_c:	OSLib:oslib.h.gadget
Gadgets.o.slider_c:	OSLib:oslib.h.types
Gadgets.o.slider_c:	OSLib:oslib.h.toolbox
Gadgets.o.slider_c:	OSLib:oslib.h.os
Gadgets.o.slider_c:	OSLib:oslib.h.oscore32
Gadgets.o.slider_c:	OSLib:oslib.h.osf32
Gadgets.o.slider_c:	OSLib:oslib.h.wimp
Gadgets.o.slider_c:	OSLib:oslib.h.osspriteop
Gadgets.o.slider_c:	OSLib:oslib.h.font
Gadgets.o.slider_c:	OSLib:oslib.h.wimp32
Gadgets.o.slider_c:	OSLib:oslib.h.messagetrans
Gadgets.o.slider_c:	OSLib:oslib.h.macros
Gadgets.o.slider_c:	Gadgets.h.slider_b
Gadgets.o.slider_c:	OSLib:oslib.h.slider
Gadgets.o.slider_c:	Gadgets.h.gadget_w_slider
Gadgets.o.slider_c:	OSLib:oslib.h.wimp
Gadgets.o.slider_c:	Gadgets.h.gadget_w_number
Gadgets.o.slider_t:	Gadgets.c++.slider_t
Gadgets.o.slider_t:	Gadgets.h.slider_t
Gadgets.o.slider_t:	Gadgets.h.gadget_t
Gadgets.o.slider_t:	Gadgets.h.gadget_b
Gadgets.o.slider_t:	CPP:h.string
Gadgets.o.slider_t:	CPP:h.bool
Gadgets.o.slider_t:	CPP:h.config
Gadgets.o.slider_t:	CPP:h.iosfwd
Gadgets.o.slider_t:	CPP:h.iterator
Gadgets.o.slider_t:	CPP:h.newcasts
Gadgets.o.slider_t:	OSLib:oslib.h.gadget
Gadgets.o.slider_t:	OSLib:oslib.h.types
Gadgets.o.slider_t:	OSLib:oslib.h.toolbox
Gadgets.o.slider_t:	OSLib:oslib.h.os
Gadgets.o.slider_t:	OSLib:oslib.h.oscore32
Gadgets.o.slider_t:	OSLib:oslib.h.osf32
Gadgets.o.slider_t:	OSLib:oslib.h.wimp
Gadgets.o.slider_t:	OSLib:oslib.h.osspriteop
Gadgets.o.slider_t:	OSLib:oslib.h.font
Gadgets.o.slider_t:	OSLib:oslib.h.wimp32
Gadgets.o.slider_t:	OSLib:oslib.h.messagetrans
Gadgets.o.slider_t:	OSLib:oslib.h.macros
Gadgets.o.slider_t:	Gadgets.h.slider_b
Gadgets.o.slider_t:	OSLib:oslib.h.slider
Gadgets.o.slider_t:	Gadgets.h.gadget_w_slider
Gadgets.o.slider_t:	OSLib:oslib.h.wimp
Gadgets.o.slider_t:	Gadgets.h.gadget_w_number
Gadgets.o.stringset_b:	Gadgets.c++.stringset_b
Gadgets.o.stringset_b:	Gadgets.h.stringset_b
Gadgets.o.stringset_b:	CPP:h.list
Gadgets.o.stringset_b:	CPP:h.bool
Gadgets.o.stringset_b:	CPP:h.config
Gadgets.o.stringset_b:	CPP:h.iterator
Gadgets.o.stringset_b:	CPP:h.iosfwd
Gadgets.o.stringset_b:	CPP:h.listbase
Gadgets.o.stringset_b:	CPP:h.newcasts
Gadgets.o.stringset_b:	CPP:h.utility
Gadgets.o.stringset_b:	OSLib:oslib.h.stringset
Gadgets.o.stringset_b:	OSLib:oslib.h.types
Gadgets.o.stringset_b:	OSLib:oslib.h.toolbox
Gadgets.o.stringset_b:	OSLib:oslib.h.os
Gadgets.o.stringset_b:	OSLib:oslib.h.oscore32
Gadgets.o.stringset_b:	OSLib:oslib.h.osf32
Gadgets.o.stringset_b:	OSLib:oslib.h.wimp
Gadgets.o.stringset_b:	OSLib:oslib.h.osspriteop
Gadgets.o.stringset_b:	OSLib:oslib.h.font
Gadgets.o.stringset_b:	OSLib:oslib.h.wimp32
Gadgets.o.stringset_b:	OSLib:oslib.h.messagetrans
Gadgets.o.stringset_b:	OSLib:oslib.h.gadget
Gadgets.o.stringset_b:	Gadgets.h.gadget_b
Gadgets.o.stringset_b:	CPP:h.string
Gadgets.o.stringset_b:	OSLib:oslib.h.gadget
Gadgets.o.stringset_b:	OSLib:oslib.h.macros
Gadgets.o.stringset_b:	Gadgets.h.gadget_w_allowable
Gadgets.o.stringset_b:	Gadgets.h.gadget_w_justification
Gadgets.o.stringset_b:	Gadgets.h.gadget_w_number
Gadgets.o.stringset_b:	Gadgets.h.gadget_w_string
Gadgets.o.stringset_c:	Gadgets.c++.stringset_c
Gadgets.o.stringset_c:	Gadgets.h.stringset_c
Gadgets.o.stringset_c:	Gadgets.h.gadget_c
Gadgets.o.stringset_c:	CPP:h.vector
Gadgets.o.stringset_c:	CPP:h.bool
Gadgets.o.stringset_c:	CPP:h.config
Gadgets.o.stringset_c:	CPP:h.iterator
Gadgets.o.stringset_c:	CPP:h.iosfwd
Gadgets.o.stringset_c:	CPP:h.vectorbase
Gadgets.o.stringset_c:	CPP:h.utility
Gadgets.o.stringset_c:	Gadgets.h.gadget_b
Gadgets.o.stringset_c:	CPP:h.string
Gadgets.o.stringset_c:	CPP:h.newcasts
Gadgets.o.stringset_c:	OSLib:oslib.h.gadget
Gadgets.o.stringset_c:	OSLib:oslib.h.types
Gadgets.o.stringset_c:	OSLib:oslib.h.toolbox
Gadgets.o.stringset_c:	OSLib:oslib.h.os
Gadgets.o.stringset_c:	OSLib:oslib.h.oscore32
Gadgets.o.stringset_c:	OSLib:oslib.h.osf32
Gadgets.o.stringset_c:	OSLib:oslib.h.wimp
Gadgets.o.stringset_c:	OSLib:oslib.h.osspriteop
Gadgets.o.stringset_c:	OSLib:oslib.h.font
Gadgets.o.stringset_c:	OSLib:oslib.h.wimp32
Gadgets.o.stringset_c:	OSLib:oslib.h.messagetrans
Gadgets.o.stringset_c:	OSLib:oslib.h.macros
Gadgets.o.stringset_c:	Gadgets.h.stringset_b
Gadgets.o.stringset_c:	CPP:h.list
Gadgets.o.stringset_c:	CPP:h.listbase
Gadgets.o.stringset_c:	OSLib:oslib.h.stringset
Gadgets.o.stringset_c:	Gadgets.h.gadget_w_allowable
Gadgets.o.stringset_c:	Gadgets.h.gadget_w_justification
Gadgets.o.stringset_c:	Gadgets.h.gadget_w_number
Gadgets.o.stringset_c:	Gadgets.h.gadget_w_string
Gadgets.o.stringset_t:	Gadgets.c++.stringset_t
Gadgets.o.stringset_t:	Gadgets.h.stringset_t
Gadgets.o.stringset_t:	Gadgets.h.gadget_t
Gadgets.o.stringset_t:	Gadgets.h.gadget_b
Gadgets.o.stringset_t:	CPP:h.string
Gadgets.o.stringset_t:	CPP:h.bool
Gadgets.o.stringset_t:	CPP:h.config
Gadgets.o.stringset_t:	CPP:h.iosfwd
Gadgets.o.stringset_t:	CPP:h.iterator
Gadgets.o.stringset_t:	CPP:h.newcasts
Gadgets.o.stringset_t:	OSLib:oslib.h.gadget
Gadgets.o.stringset_t:	OSLib:oslib.h.types
Gadgets.o.stringset_t:	OSLib:oslib.h.toolbox
Gadgets.o.stringset_t:	OSLib:oslib.h.os
Gadgets.o.stringset_t:	OSLib:oslib.h.oscore32
Gadgets.o.stringset_t:	OSLib:oslib.h.osf32
Gadgets.o.stringset_t:	OSLib:oslib.h.wimp
Gadgets.o.stringset_t:	OSLib:oslib.h.osspriteop
Gadgets.o.stringset_t:	OSLib:oslib.h.font
Gadgets.o.stringset_t:	OSLib:oslib.h.wimp32
Gadgets.o.stringset_t:	OSLib:oslib.h.messagetrans
Gadgets.o.stringset_t:	OSLib:oslib.h.macros
Gadgets.o.stringset_t:	Gadgets.h.gadget_w_caret
Gadgets.o.stringset_t:	OSLib:oslib.h.gadget
Gadgets.o.stringset_t:	OSLib:oslib.h.macros
Gadgets.o.stringset_t:	Gadgets.h.stringset_b
Gadgets.o.stringset_t:	CPP:h.list
Gadgets.o.stringset_t:	CPP:h.listbase
Gadgets.o.stringset_t:	CPP:h.utility
Gadgets.o.stringset_t:	OSLib:oslib.h.stringset
Gadgets.o.stringset_t:	Gadgets.h.gadget_w_allowable
Gadgets.o.stringset_t:	Gadgets.h.gadget_w_justification
Gadgets.o.stringset_t:	Gadgets.h.gadget_w_number
Gadgets.o.stringset_t:	Gadgets.h.gadget_w_string
Gadgets.o.writablefield_b:	Gadgets.c++.writablefield_b
Gadgets.o.writablefield_b:	Gadgets.h.writablefield_b
Gadgets.o.writablefield_b:	OSLib:oslib.h.writablefield
Gadgets.o.writablefield_b:	OSLib:oslib.h.types
Gadgets.o.writablefield_b:	OSLib:oslib.h.toolbox
Gadgets.o.writablefield_b:	OSLib:oslib.h.os
Gadgets.o.writablefield_b:	OSLib:oslib.h.oscore32
Gadgets.o.writablefield_b:	OSLib:oslib.h.osf32
Gadgets.o.writablefield_b:	OSLib:oslib.h.wimp
Gadgets.o.writablefield_b:	OSLib:oslib.h.osspriteop
Gadgets.o.writablefield_b:	OSLib:oslib.h.font
Gadgets.o.writablefield_b:	OSLib:oslib.h.wimp32
Gadgets.o.writablefield_b:	OSLib:oslib.h.messagetrans
Gadgets.o.writablefield_b:	OSLib:oslib.h.gadget
Gadgets.o.writablefield_b:	Gadgets.h.gadget_b
Gadgets.o.writablefield_b:	CPP:h.string
Gadgets.o.writablefield_b:	CPP:h.bool
Gadgets.o.writablefield_b:	CPP:h.config
Gadgets.o.writablefield_b:	CPP:h.iosfwd
Gadgets.o.writablefield_b:	CPP:h.iterator
Gadgets.o.writablefield_b:	CPP:h.newcasts
Gadgets.o.writablefield_b:	OSLib:oslib.h.gadget
Gadgets.o.writablefield_b:	OSLib:oslib.h.macros
Gadgets.o.writablefield_b:	Gadgets.h.gadget_w_allowable
Gadgets.o.writablefield_b:	Gadgets.h.gadget_w_justification
Gadgets.o.writablefield_b:	Gadgets.h.gadget_w_string
Gadgets.o.writablefield_c:	Gadgets.c++.writablefield_c
Gadgets.o.writablefield_c:	Gadgets.h.writablefield_c
Gadgets.o.writablefield_c:	Gadgets.h.gadget_c
Gadgets.o.writablefield_c:	CPP:h.vector
Gadgets.o.writablefield_c:	CPP:h.bool
Gadgets.o.writablefield_c:	CPP:h.config
Gadgets.o.writablefield_c:	CPP:h.iterator
Gadgets.o.writablefield_c:	CPP:h.iosfwd
Gadgets.o.writablefield_c:	CPP:h.vectorbase
Gadgets.o.writablefield_c:	CPP:h.utility
Gadgets.o.writablefield_c:	Gadgets.h.gadget_b
Gadgets.o.writablefield_c:	CPP:h.string
Gadgets.o.writablefield_c:	CPP:h.newcasts
Gadgets.o.writablefield_c:	OSLib:oslib.h.gadget
Gadgets.o.writablefield_c:	OSLib:oslib.h.types
Gadgets.o.writablefield_c:	OSLib:oslib.h.toolbox
Gadgets.o.writablefield_c:	OSLib:oslib.h.os
Gadgets.o.writablefield_c:	OSLib:oslib.h.oscore32
Gadgets.o.writablefield_c:	OSLib:oslib.h.osf32
Gadgets.o.writablefield_c:	OSLib:oslib.h.wimp
Gadgets.o.writablefield_c:	OSLib:oslib.h.osspriteop
Gadgets.o.writablefield_c:	OSLib:oslib.h.font
Gadgets.o.writablefield_c:	OSLib:oslib.h.wimp32
Gadgets.o.writablefield_c:	OSLib:oslib.h.messagetrans
Gadgets.o.writablefield_c:	OSLib:oslib.h.macros
Gadgets.o.writablefield_c:	Gadgets.h.gadget_w_font
Gadgets.o.writablefield_c:	Gadgets.h.writablefield_b
Gadgets.o.writablefield_c:	OSLib:oslib.h.writablefield
Gadgets.o.writablefield_c:	Gadgets.h.gadget_w_allowable
Gadgets.o.writablefield_c:	Gadgets.h.gadget_w_justification
Gadgets.o.writablefield_c:	Gadgets.h.gadget_w_string
Gadgets.o.writablefield_t:	Gadgets.c++.writablefield_t
Gadgets.o.writablefield_t:	Gadgets.h.writablefield_t
Gadgets.o.writablefield_t:	Gadgets.h.gadget_t
Gadgets.o.writablefield_t:	Gadgets.h.gadget_b
Gadgets.o.writablefield_t:	CPP:h.string
Gadgets.o.writablefield_t:	CPP:h.bool
Gadgets.o.writablefield_t:	CPP:h.config
Gadgets.o.writablefield_t:	CPP:h.iosfwd
Gadgets.o.writablefield_t:	CPP:h.iterator
Gadgets.o.writablefield_t:	CPP:h.newcasts
Gadgets.o.writablefield_t:	OSLib:oslib.h.gadget
Gadgets.o.writablefield_t:	OSLib:oslib.h.types
Gadgets.o.writablefield_t:	OSLib:oslib.h.toolbox
Gadgets.o.writablefield_t:	OSLib:oslib.h.os
Gadgets.o.writablefield_t:	OSLib:oslib.h.oscore32
Gadgets.o.writablefield_t:	OSLib:oslib.h.osf32
Gadgets.o.writablefield_t:	OSLib:oslib.h.wimp
Gadgets.o.writablefield_t:	OSLib:oslib.h.osspriteop
Gadgets.o.writablefield_t:	OSLib:oslib.h.font
Gadgets.o.writablefield_t:	OSLib:oslib.h.wimp32
Gadgets.o.writablefield_t:	OSLib:oslib.h.messagetrans
Gadgets.o.writablefield_t:	OSLib:oslib.h.macros
Gadgets.o.writablefield_t:	Gadgets.h.gadget_w_caret
Gadgets.o.writablefield_t:	OSLib:oslib.h.gadget
Gadgets.o.writablefield_t:	OSLib:oslib.h.macros
Gadgets.o.writablefield_t:	Gadgets.h.writablefield_b
Gadgets.o.writablefield_t:	OSLib:oslib.h.writablefield
Gadgets.o.writablefield_t:	Gadgets.h.gadget_w_allowable
Gadgets.o.writablefield_t:	Gadgets.h.gadget_w_justification
Gadgets.o.writablefield_t:	Gadgets.h.gadget_w_string
