core/Make.proto
changeset 300 b6d834208d33
parent 296 ea3dbc023c80
child 302 6bae0bc229ec
equal deleted inserted replaced
299:f06c5eba524d 300:b6d834208d33
    32 
    32 
    33 # if your embedded C code requires any system includes,
    33 # if your embedded C code requires any system includes,
    34 # add the path(es) here:,
    34 # add the path(es) here:,
    35 # ********** OPTIONAL: MODIFY the next lines ***
    35 # ********** OPTIONAL: MODIFY the next lines ***
    36 # LOCALINCLUDES=-Ifoo -Ibar
    36 # LOCALINCLUDES=-Ifoo -Ibar
    37 LOCALINCLUDES= -I$(INCLUDE_TOP)/stx/libbasic -I$(INCLUDE_TOP)/stx/libview2 -I$(INCLUDE_TOP)/stx/libwidg2
    37 LOCALINCLUDES=-Iexpat-2.0.1/lib -I$(INCLUDE_TOP)/stx/libbasic -I$(INCLUDE_TOP)/stx/libbasic2 -I$(INCLUDE_TOP)/stx/libtool -I$(INCLUDE_TOP)/stx/libview -I$(INCLUDE_TOP)/stx/libview2 -I$(INCLUDE_TOP)/stx/libwidg2
    38 
    38 
    39 
    39 
    40 # if you need any additional defines for embedded C code,
    40 # if you need any additional defines for embedded C code,
    41 # add them here:,
    41 # add them here:,
    42 # ********** OPTIONAL: MODIFY the next lines ***
    42 # ********** OPTIONAL: MODIFY the next lines ***
    47 STCLOCALOPT='-package=$(PACKAGE)' -I. $(LOCALINCLUDES) $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) -headerDir=.  -varPrefix=$(LIBNAME)
    47 STCLOCALOPT='-package=$(PACKAGE)' -I. $(LOCALINCLUDES) $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) -headerDir=.  -varPrefix=$(LIBNAME)
    48 
    48 
    49 
    49 
    50 # ********** OPTIONAL: MODIFY the next line ***
    50 # ********** OPTIONAL: MODIFY the next line ***
    51 # additional C-libraries that should be pre-linked with the class-objects
    51 # additional C-libraries that should be pre-linked with the class-objects
    52 LD_OBJ_LIBS=
    52 LD_OBJ_LIBS=expat-2.0.1/build/lib/libexpat.a
    53 LOCAL_SHARED_LIBS=
    53 LOCAL_SHARED_LIBS=
    54 
    54 
    55 
    55 
    56 # ********** OPTIONAL: MODIFY the next line ***
    56 # ********** OPTIONAL: MODIFY the next line ***
    57 # additional C targets or libraries should be added below
    57 # additional C targets or libraries should be added below
    61 
    61 
    62 
    62 
    63 
    63 
    64 all:: preMake classLibRule postMake
    64 all:: preMake classLibRule postMake
    65 
    65 
    66 pre_objs::  
    66 pre_objs:: expat-2.0.1/build/lib/libexpat.a 
    67 
    67 
       
    68 
       
    69 expat-2.0.1/build/lib/libexpat.a:
       
    70 	mkdir expat-2.0.1/build && cd expat-2.0.1/build && CC=$(CC) CFLAGS="$(CCCONFOPT) -fPIC" ../configure --prefix=$$PWD
       
    71 	$(MAKE) -C expat-2.0.1/build
       
    72 	$(MAKE) -C expat-2.0.1/build install
    68 
    73 
    69 
    74 
    70 
    75 
    71 # Update SVN revision in package definition class
    76 # Update SVN revision in package definition class
    72 ifneq (,$(findstring .svn,$(wildcard .svn)))
    77 ifneq (,$(findstring .svn,$(wildcard .svn)))
    83 		rev2="$(shell printf "%-16s" $$(cat .svnversion))"; \
    88 		rev2="$(shell printf "%-16s" $$(cat .svnversion))"; \
    84 		echo "  [SV]  Expanding svnRevisionNo in $1.st"; \
    89 		echo "  [SV]  Expanding svnRevisionNo in $1.st"; \
    85 		sed -e "s/\"\$$SVN\-Revision:\".*\"\$$\"/\"\$$SVN-Revision:\"\'$$rev2\'\"\$$\"/g" $< > .stx_goodies_xmlsuite_core.svn.st; \
    90 		sed -e "s/\"\$$SVN\-Revision:\".*\"\$$\"/\"\$$SVN-Revision:\"\'$$rev2\'\"\$$\"/g" $< > .stx_goodies_xmlsuite_core.svn.st; \
    86 	fi
    91 	fi
    87 	$(MAKE) CC="$(CLASSLIB_CC)" OPT="$(OPT)" SEPINITCODE="$(SEPINITCODE)" STC="$(STC)" STFILE=.stx_goodies_xmlsuite_core.svn $(C_RULE);
    92 	$(MAKE) CC="$(CLASSLIB_CC)" OPT="$(OPT)" SEPINITCODE="$(SEPINITCODE)" STC="$(STC)" STFILE=.stx_goodies_xmlsuite_core.svn $(C_RULE);
    88 	sed -i -e "s/\".stx_goodies_xmlsuite_core.svn.st\");/\"\stx_goodies_xmlsuite_core.st\");/g" .stx_goodies_xmlsuite_core.svn.c
    93 	sed -i -e "s/\".stx_goodies_xmlsuite_core.svn.st\");/\"stx_goodies_xmlsuite_core.st\");/g" .stx_goodies_xmlsuite_core.svn.c
    89 	$(MAKE) .stx_goodies_xmlsuite_core.svn.$(O)
    94 	$(MAKE) .stx_goodies_xmlsuite_core.svn.$(O)
    90 	@mv .stx_goodies_xmlsuite_core.svn.$(O) stx_goodies_xmlsuite_core.$(O)
    95 	@mv .stx_goodies_xmlsuite_core.svn.$(O) stx_goodies_xmlsuite_core.$(O)
    91 endif
    96 endif
    92 
    97 
    93 
    98 
    94 
    99 
       
   100 # Enforce recompilation of package definition class if Mercurial working
       
   101 # copy state changes. Together with --guessVersion it ensures that package
       
   102 # definition class always contains correct binary revision string.
       
   103 ifneq (**NOHG**, $(shell hg root 2> /dev/null || echo -n '**NOHG**'))
       
   104 stx_goodies_xmlsuite_core.$(O): $(shell hg root)/.hg/dirstate
       
   105 endif
       
   106 
    95 
   107 
    96 
   108 
    97 
   109 
    98 # run default testsuite for this package
   110 # run default testsuite for this package
    99 test: $(TOP)/goodies/builder/reports
   111 test: $(TOP)/goodies/builder/reports
   100 	$(MAKE) -C $(TOP)/goodies/builder/reports
   112 	$(MAKE) -C $(TOP)/goodies/builder/reports -f Makefile.init
   101 	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport -p $(PACKAGE)
   113 	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport -p $(PACKAGE)
   102 
   114 
   103 
   115 
   104 
   116 
   105 # add more install actions here
   117 # add more install actions here
   124 	cd ../../../libwidg2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
   136 	cd ../../../libwidg2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
   125 
   137 
   126 
   138 
   127 
   139 
   128 # build all packages containing referenced classes for this package
   140 # build all packages containing referenced classes for this package
   129 # they are nor needed to compile the package
   141 # they are not needed to compile the package (but later, to load it)
   130 references:
   142 references:
   131 
   143 
   132 
   144 
   133 cleanjunk::
   145 cleanjunk::
   134 	-rm -f *.s *.s2
   146 	-rm -f *.s *.s2
   140 	-rm -f *.so *.dll
   152 	-rm -f *.so *.dll
   141 
   153 
   142 
   154 
   143 # BEGINMAKEDEPEND --- do not remove this line; make depend needs it
   155 # BEGINMAKEDEPEND --- do not remove this line; make depend needs it
   144 $(OUTDIR)XMLv2__AbstractSAX2Handler.$(O) XMLv2__AbstractSAX2Handler.$(H): XMLv2__AbstractSAX2Handler.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   156 $(OUTDIR)XMLv2__AbstractSAX2Handler.$(O) XMLv2__AbstractSAX2Handler.$(H): XMLv2__AbstractSAX2Handler.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   145 $(OUTDIR)XMLv2__DOM3Inspector.$(O) XMLv2__DOM3Inspector.$(H): XMLv2__DOM3Inspector.st $(INCLUDE_TOP)/stx/libview2/ApplicationModel.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libwidg2/HierarchicalItem.$(H) $(STCHDR)
   157 $(OUTDIR)XMLv2__DOM3Inspector.$(O) XMLv2__DOM3Inspector.$(H): XMLv2__DOM3Inspector.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libview2/ApplicationModel.$(H) $(INCLUDE_TOP)/stx/libview2/Model.$(H) $(INCLUDE_TOP)/stx/libwidg2/AbstractHierarchicalItem.$(H) $(INCLUDE_TOP)/stx/libwidg2/HierarchicalItem.$(H) $(STCHDR)
   146 $(OUTDIR)XMLv2__DOM3NodeDumper.$(O) XMLv2__DOM3NodeDumper.$(H): XMLv2__DOM3NodeDumper.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   158 $(OUTDIR)XMLv2__DOM3NodeDumper.$(O) XMLv2__DOM3NodeDumper.$(H): XMLv2__DOM3NodeDumper.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   147 $(OUTDIR)XMLv2__DOMConfiguration.$(O) XMLv2__DOMConfiguration.$(H): XMLv2__DOMConfiguration.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   159 $(OUTDIR)XMLv2__DOMConfiguration.$(O) XMLv2__DOMConfiguration.$(H): XMLv2__DOMConfiguration.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   148 $(OUTDIR)XMLv2__DOMError.$(O) XMLv2__DOMError.$(H): XMLv2__DOMError.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   160 $(OUTDIR)XMLv2__DOMError.$(O) XMLv2__DOMError.$(H): XMLv2__DOMError.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   149 $(OUTDIR)XMLv2__DOMErrorHandler.$(O) XMLv2__DOMErrorHandler.$(H): XMLv2__DOMErrorHandler.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   161 $(OUTDIR)XMLv2__DOMErrorHandler.$(O) XMLv2__DOMErrorHandler.$(H): XMLv2__DOMErrorHandler.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   150 $(OUTDIR)XMLv2__DOMErrorMonitor.$(O) XMLv2__DOMErrorMonitor.$(H): XMLv2__DOMErrorMonitor.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   162 $(OUTDIR)XMLv2__DOMErrorMonitor.$(O) XMLv2__DOMErrorMonitor.$(H): XMLv2__DOMErrorMonitor.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   151 $(OUTDIR)XMLv2__DOMImplementation.$(O) XMLv2__DOMImplementation.$(H): XMLv2__DOMImplementation.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   163 $(OUTDIR)XMLv2__DOMImplementation.$(O) XMLv2__DOMImplementation.$(H): XMLv2__DOMImplementation.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   152 $(OUTDIR)XMLv2__DOMImplementationRegistry.$(O) XMLv2__DOMImplementationRegistry.$(H): XMLv2__DOMImplementationRegistry.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   164 $(OUTDIR)XMLv2__DOMImplementationRegistry.$(O) XMLv2__DOMImplementationRegistry.$(H): XMLv2__DOMImplementationRegistry.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   153 $(OUTDIR)XMLv2__InputSource.$(O) XMLv2__InputSource.$(H): XMLv2__InputSource.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   165 $(OUTDIR)XMLv2__InputSource.$(O) XMLv2__InputSource.$(H): XMLv2__InputSource.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   154 $(OUTDIR)XMLv2__NameList.$(O) XMLv2__NameList.$(H): XMLv2__NameList.st $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   166 $(OUTDIR)XMLv2__NameList.$(O) XMLv2__NameList.$(H): XMLv2__NameList.st $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(STCHDR)
   155 $(OUTDIR)XMLv2__Node.$(O) XMLv2__Node.$(H): XMLv2__Node.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   167 $(OUTDIR)XMLv2__Node.$(O) XMLv2__Node.$(H): XMLv2__Node.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   156 $(OUTDIR)XMLv2__NodeList.$(O) XMLv2__NodeList.$(H): XMLv2__NodeList.st $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   168 $(OUTDIR)XMLv2__NodeList.$(O) XMLv2__NodeList.$(H): XMLv2__NodeList.st $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(STCHDR)
   157 $(OUTDIR)XMLv2__NodeName.$(O) XMLv2__NodeName.$(H): XMLv2__NodeName.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   169 $(OUTDIR)XMLv2__NodeName.$(O) XMLv2__NodeName.$(H): XMLv2__NodeName.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   158 $(OUTDIR)XMLv2__ParseError.$(O) XMLv2__ParseError.$(H): XMLv2__ParseError.st $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   170 $(OUTDIR)XMLv2__ParseError.$(O) XMLv2__ParseError.$(H): XMLv2__ParseError.st $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   159 $(OUTDIR)XMLv2__Parser.$(O) XMLv2__Parser.$(H): XMLv2__Parser.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   171 $(OUTDIR)XMLv2__Parser.$(O) XMLv2__Parser.$(H): XMLv2__Parser.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   160 $(OUTDIR)XMLv2__SAXError.$(O) XMLv2__SAXError.$(H): XMLv2__SAXError.st $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   172 $(OUTDIR)XMLv2__SAXError.$(O) XMLv2__SAXError.$(H): XMLv2__SAXError.st $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   161 $(OUTDIR)XMLv2__TypeInfo.$(O) XMLv2__TypeInfo.$(H): XMLv2__TypeInfo.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   173 $(OUTDIR)XMLv2__TypeInfo.$(O) XMLv2__TypeInfo.$(H): XMLv2__TypeInfo.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   162 $(OUTDIR)XMLv2__UserDataHandler.$(O) XMLv2__UserDataHandler.$(H): XMLv2__UserDataHandler.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   174 $(OUTDIR)XMLv2__UserDataHandler.$(O) XMLv2__UserDataHandler.$(H): XMLv2__UserDataHandler.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   163 $(OUTDIR)XMLv2__XMLBuilder.$(O) XMLv2__XMLBuilder.$(H): XMLv2__XMLBuilder.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   175 $(OUTDIR)XMLv2__XMLBuilder.$(O) XMLv2__XMLBuilder.$(H): XMLv2__XMLBuilder.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   164 $(OUTDIR)XMLv2__XMLEventRecorder.$(O) XMLv2__XMLEventRecorder.$(H): XMLv2__XMLEventRecorder.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   176 $(OUTDIR)XMLv2__XMLEventRecorder.$(O) XMLv2__XMLEventRecorder.$(H): XMLv2__XMLEventRecorder.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   165 $(OUTDIR)XMLv2__XMLReader.$(O) XMLv2__XMLReader.$(H): XMLv2__XMLReader.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   177 $(OUTDIR)XMLv2__XMLReader.$(O) XMLv2__XMLReader.$(H): XMLv2__XMLReader.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   166 $(OUTDIR)XMLv2__XMLReaderImplementationQuery.$(O) XMLv2__XMLReaderImplementationQuery.$(H): XMLv2__XMLReaderImplementationQuery.st $(INCLUDE_TOP)/stx/libbasic/Query.$(H) $(INCLUDE_TOP)/stx/libbasic/Notification.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   178 $(OUTDIR)XMLv2__XMLReaderImplementationQuery.$(O) XMLv2__XMLReaderImplementationQuery.$(H): XMLv2__XMLReaderImplementationQuery.st $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Notification.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/Query.$(H) $(STCHDR)
   167 $(OUTDIR)XMLv2__XMLWriter.$(O) XMLv2__XMLWriter.$(H): XMLv2__XMLWriter.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   179 $(OUTDIR)XMLv2__XMLWriter.$(O) XMLv2__XMLWriter.$(H): XMLv2__XMLWriter.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   168 $(OUTDIR)stx_goodies_xmlsuite_core.$(O) stx_goodies_xmlsuite_core.$(H): stx_goodies_xmlsuite_core.st $(INCLUDE_TOP)/stx/libbasic/LibraryDefinition.$(H) $(INCLUDE_TOP)/stx/libbasic/ProjectDefinition.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   180 $(OUTDIR)stx_goodies_xmlsuite_core.$(O) stx_goodies_xmlsuite_core.$(H): stx_goodies_xmlsuite_core.st $(INCLUDE_TOP)/stx/libbasic/LibraryDefinition.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/ProjectDefinition.$(H) $(STCHDR)
   169 $(OUTDIR)XMLv2__Attr.$(O) XMLv2__Attr.$(H): XMLv2__Attr.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   181 $(OUTDIR)XMLv2__Attr.$(O) XMLv2__Attr.$(H): XMLv2__Attr.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   170 $(OUTDIR)XMLv2__CharacterData.$(O) XMLv2__CharacterData.$(H): XMLv2__CharacterData.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   182 $(OUTDIR)XMLv2__CharacterData.$(O) XMLv2__CharacterData.$(H): XMLv2__CharacterData.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   171 $(OUTDIR)XMLv2__ContentHandler.$(O) XMLv2__ContentHandler.$(H): XMLv2__ContentHandler.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   183 $(OUTDIR)XMLv2__ContentHandler.$(O) XMLv2__ContentHandler.$(H): XMLv2__ContentHandler.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   172 $(OUTDIR)XMLv2__DOM3XMLReader.$(O) XMLv2__DOM3XMLReader.$(H): XMLv2__DOM3XMLReader.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLReader.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   184 $(OUTDIR)XMLv2__DOM3XMLReader.$(O) XMLv2__DOM3XMLReader.$(H): XMLv2__DOM3XMLReader.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLReader.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   173 $(OUTDIR)XMLv2__DOMException.$(O) XMLv2__DOMException.$(H): XMLv2__DOMException.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__SAXError.$(H) $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   185 $(OUTDIR)XMLv2__DOMException.$(O) XMLv2__DOMException.$(H): XMLv2__DOMException.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__SAXError.$(H) $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   178 $(OUTDIR)XMLv2__Element.$(O) XMLv2__Element.$(H): XMLv2__Element.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   190 $(OUTDIR)XMLv2__Element.$(O) XMLv2__Element.$(H): XMLv2__Element.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   179 $(OUTDIR)XMLv2__Entity.$(O) XMLv2__Entity.$(H): XMLv2__Entity.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   191 $(OUTDIR)XMLv2__Entity.$(O) XMLv2__Entity.$(H): XMLv2__Entity.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   180 $(OUTDIR)XMLv2__EntityReference.$(O) XMLv2__EntityReference.$(H): XMLv2__EntityReference.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   192 $(OUTDIR)XMLv2__EntityReference.$(O) XMLv2__EntityReference.$(H): XMLv2__EntityReference.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   181 $(OUTDIR)XMLv2__EntityResolver.$(O) XMLv2__EntityResolver.$(H): XMLv2__EntityResolver.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   193 $(OUTDIR)XMLv2__EntityResolver.$(O) XMLv2__EntityResolver.$(H): XMLv2__EntityResolver.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   182 $(OUTDIR)XMLv2__ErrorHandler.$(O) XMLv2__ErrorHandler.$(H): XMLv2__ErrorHandler.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   194 $(OUTDIR)XMLv2__ErrorHandler.$(O) XMLv2__ErrorHandler.$(H): XMLv2__ErrorHandler.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
       
   195 $(OUTDIR)XMLv2__ExpatXMLReader.$(O) XMLv2__ExpatXMLReader.$(H): XMLv2__ExpatXMLReader.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLReader.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   183 $(OUTDIR)XMLv2__IndentingXMLWriter.$(O) XMLv2__IndentingXMLWriter.$(H): XMLv2__IndentingXMLWriter.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLWriter.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   196 $(OUTDIR)XMLv2__IndentingXMLWriter.$(O) XMLv2__IndentingXMLWriter.$(H): XMLv2__IndentingXMLWriter.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLWriter.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   184 $(OUTDIR)XMLv2__NamedNodeMap.$(O) XMLv2__NamedNodeMap.$(H): XMLv2__NamedNodeMap.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__NodeList.$(H) $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   197 $(OUTDIR)XMLv2__NamedNodeMap.$(O) XMLv2__NamedNodeMap.$(H): XMLv2__NamedNodeMap.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__NodeList.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(STCHDR)
   185 $(OUTDIR)XMLv2__Notation.$(O) XMLv2__Notation.$(H): XMLv2__Notation.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   198 $(OUTDIR)XMLv2__Notation.$(O) XMLv2__Notation.$(H): XMLv2__Notation.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   186 $(OUTDIR)XMLv2__ProcessingInstruction.$(O) XMLv2__ProcessingInstruction.$(H): XMLv2__ProcessingInstruction.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   199 $(OUTDIR)XMLv2__ProcessingInstruction.$(O) XMLv2__ProcessingInstruction.$(H): XMLv2__ProcessingInstruction.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   187 $(OUTDIR)XMLv2__SAXParseError.$(O) XMLv2__SAXParseError.$(H): XMLv2__SAXParseError.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__SAXError.$(H) $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   200 $(OUTDIR)XMLv2__SAXParseError.$(O) XMLv2__SAXParseError.$(H): XMLv2__SAXParseError.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__SAXError.$(H) $(INCLUDE_TOP)/stx/libbasic/Error.$(H) $(INCLUDE_TOP)/stx/libbasic/Exception.$(H) $(INCLUDE_TOP)/stx/libbasic/GenericException.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   188 $(OUTDIR)XMLv2__XMLGenerator.$(O) XMLv2__XMLGenerator.$(H): XMLv2__XMLGenerator.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLReader.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   201 $(OUTDIR)XMLv2__XMLGenerator.$(O) XMLv2__XMLGenerator.$(H): XMLv2__XMLGenerator.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLReader.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   189 $(OUTDIR)XMLv2__XMLSuiteDOM3Implementation.$(O) XMLv2__XMLSuiteDOM3Implementation.$(H): XMLv2__XMLSuiteDOM3Implementation.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__DOMImplementation.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   202 $(OUTDIR)XMLv2__XMLSuiteDOM3Implementation.$(O) XMLv2__XMLSuiteDOM3Implementation.$(H): XMLv2__XMLSuiteDOM3Implementation.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__DOMImplementation.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   190 $(OUTDIR)XMLv2__Attributes.$(O) XMLv2__Attributes.$(H): XMLv2__Attributes.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__NamedNodeMap.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__NodeList.$(H) $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   203 $(OUTDIR)XMLv2__Attributes.$(O) XMLv2__Attributes.$(H): XMLv2__Attributes.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__NamedNodeMap.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__NodeList.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/OrderedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(STCHDR)
   191 $(OUTDIR)XMLv2__CDATASection.$(O) XMLv2__CDATASection.$(H): XMLv2__CDATASection.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__CharacterData.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   204 $(OUTDIR)XMLv2__CDATASection.$(O) XMLv2__CDATASection.$(H): XMLv2__CDATASection.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__CharacterData.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   192 $(OUTDIR)XMLv2__Comment.$(O) XMLv2__Comment.$(H): XMLv2__Comment.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__CharacterData.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   205 $(OUTDIR)XMLv2__Comment.$(O) XMLv2__Comment.$(H): XMLv2__Comment.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__CharacterData.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   193 $(OUTDIR)XMLv2__DOM3Builder.$(O) XMLv2__DOM3Builder.$(H): XMLv2__DOM3Builder.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__ContentHandler.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   206 $(OUTDIR)XMLv2__DOM3Builder.$(O) XMLv2__DOM3Builder.$(H): XMLv2__DOM3Builder.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__AbstractSAX2Handler.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__ContentHandler.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   194 $(OUTDIR)XMLv2__IndentingAndHighlightingXMLWriter.$(O) XMLv2__IndentingAndHighlightingXMLWriter.$(H): XMLv2__IndentingAndHighlightingXMLWriter.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__IndentingXMLWriter.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLWriter.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   207 $(OUTDIR)XMLv2__IndentingAndHighlightingXMLWriter.$(O) XMLv2__IndentingAndHighlightingXMLWriter.$(H): XMLv2__IndentingAndHighlightingXMLWriter.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__IndentingXMLWriter.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__XMLWriter.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   195 $(OUTDIR)XMLv2__Text.$(O) XMLv2__Text.$(H): XMLv2__Text.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__CharacterData.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   208 $(OUTDIR)XMLv2__Text.$(O) XMLv2__Text.$(H): XMLv2__Text.st $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__CharacterData.$(H) $(INCLUDE_TOP)/stx/goodies/xmlsuite/core/XMLv2__Node.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
   196 $(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)/stx/libbasic/Character.$(H) $(INCLUDE_TOP)/stx/libbasic/Magnitude.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/CharacterArray.$(H) $(INCLUDE_TOP)/stx/libbasic/UninterpretedBytes.$(H) $(INCLUDE_TOP)/stx/libbasic/ArrayedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(STCHDR)
   209 $(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)/stx/libbasic/ArrayedCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/Character.$(H) $(INCLUDE_TOP)/stx/libbasic/CharacterArray.$(H) $(INCLUDE_TOP)/stx/libbasic/Collection.$(H) $(INCLUDE_TOP)/stx/libbasic/Magnitude.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/SequenceableCollection.$(H) $(INCLUDE_TOP)/stx/libbasic/UninterpretedBytes.$(H) $(STCHDR)
   197 
   210 
   198 # ENDMAKEDEPEND --- do not remove this line
   211 # ENDMAKEDEPEND --- do not remove this line
   199 
   212