1393597f4f
* BUG: When a top-level source directory actually several components, compile the sub-components *after* the main components. This is especially important with gb.xml and gb.xml.rpc. git-svn-id: svn://localhost/gambas/trunk@4884 867c0c6c-44f3-4631-809d-bfa615b0a4ec
16 lines
667 B
Makefile
16 lines
667 B
Makefile
COMPONENT = gb.xml
|
|
include $(top_srcdir)/component.am
|
|
|
|
SUBDIRS = . @XMLHTML_DIR@ @XMLXSLT_DIR@ rpc
|
|
gblib_LTLIBRARIES = gb.xml.la
|
|
|
|
gb_xml_la_LIBADD = @XML_LIB@
|
|
gb_xml_la_LDFLAGS = -module @LD_FLAGS@ @XML_LDFLAGS@
|
|
gb_xml_la_CPPFLAGS = @XML_INC@
|
|
gb_xml_la_CXXFLAGS = $(AM_CXXFLAGS) -fexceptions -fvisibility=default
|
|
|
|
gb_xml_la_SOURCES = main.cpp main.h gbi.cpp gbi.h utils.cpp utils.h\
|
|
document.cpp document.h node.cpp node.h textnode.cpp textnode.h element.cpp element.h \
|
|
CDocument.cpp CDocument.h CNode.cpp CNode.h CElement.h CElement.cpp CTextNode.h CTextNode.cpp \
|
|
CReader.h CReader.cpp reader.cpp reader.h \
|
|
CExplorer.h CExplorer.cpp explorer.cpp explorer.h
|