X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fhla%2FMakefile.am;h=e214e6a0e1dc69692ad660ecee349931dc426621;hb=95ddc04a734d56d917c94e4bc952e9ac78637ba6;hp=32ba395355fef166910bff04c6309025df561cfc;hpb=257459abc64d001ba39f6c14ca0aba985b108231;p=simgear.git diff --git a/simgear/hla/Makefile.am b/simgear/hla/Makefile.am index 32ba3953..e214e6a0 100644 --- a/simgear/hla/Makefile.am +++ b/simgear/hla/Makefile.am @@ -1,3 +1,73 @@ -includedir = @includedir@/hla - INCLUDES = -I$(top_srcdir) + +lib_LIBRARIES = libsghla.a + +libsghla_adir = @includedir@/hla + +libsghla_a_HEADERS = \ + RTIData.hxx \ + HLAArrayDataElement.hxx \ + HLAArrayDataType.hxx \ + HLABasicDataElement.hxx \ + HLABasicDataType.hxx \ + HLADataElement.hxx \ + HLADataType.hxx \ + HLADataTypeVisitor.hxx \ + HLAEnumeratedDataElement.hxx \ + HLAEnumeratedDataType.hxx \ + HLAFixedRecordDataElement.hxx \ + HLAFixedRecordDataType.hxx \ + HLAFederate.hxx \ + HLAInteractionClass.hxx \ + HLALocation.hxx \ + HLAObjectClass.hxx \ + HLAObjectInstance.hxx \ + HLAOMTXmlVisitor.hxx \ + HLAPropertyDataElement.hxx \ + HLARawDataElement.hxx \ + HLAVariantDataElement.hxx \ + HLAVariantDataType.hxx + +libsghla_a_SOURCES = \ + HLAArrayDataElement.cxx \ + HLAArrayDataType.cxx \ + HLABasicDataElement.cxx \ + HLABasicDataType.cxx \ + HLADataElement.cxx \ + HLADataType.cxx \ + HLADataTypeVisitor.cxx \ + HLAEnumeratedDataElement.cxx \ + HLAEnumeratedDataType.cxx \ + HLAFederate.cxx \ + HLAFixedRecordDataElement.cxx \ + HLAFixedRecordDataType.cxx \ + HLAObjectClass.cxx \ + HLAObjectInstance.cxx \ + HLAOMTXmlVisitor.cxx \ + HLAPropertyDataElement.cxx \ + HLARawDataElement.cxx \ + HLAVariantDataElement.cxx \ + HLAVariantDataType.cxx + +if ENABLE_HLA13 + +lib_LIBRARIES += libsgrti13.a + +libsgrti13_adir = @includedir@/hla + +libsgrti13_a_SOURCES = \ + RTI13ObjectClass.cxx \ + RTI13ObjectInstance.cxx \ + RTI13Federate.cxx + +endif + +lib_LIBRARIES += libsgrti.a + +libsgrti_adir = @includedir@/hla + +libsgrti_a_SOURCES = \ + RTIObjectClass.cxx \ + RTIObjectInstance.cxx \ + RTIFederate.cxx +