X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2FMakefile.am;h=e36b1cdb91d0e891ccd479d65be6366723446c5c;hb=31bc751c4d57cbefbcda84e5a6afc7dffee22dcf;hp=a4afeb5bc6b30d9ee026f120326c8a2b3492e806;hpb=01832f09c095512baad6210854ad3a3c6a8d9622;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/Makefile.am b/saml/Makefile.am index a4afeb5..e36b1cd 100644 --- a/saml/Makefile.am +++ b/saml/Makefile.am @@ -4,33 +4,72 @@ lib_LTLIBRARIES = libsaml.la libsamlincludedir = $(includedir)/saml +encincludedir = $(includedir)/saml/encryption + +sigincludedir = $(includedir)/saml/signature + utilincludedir = $(includedir)/saml/util saml1coreincludedir = $(includedir)/saml/saml1/core +saml2coreincludedir = $(includedir)/saml/saml2/core + +saml2mdincludedir = $(includedir)/saml/saml2/metadata + libsamlinclude_HEADERS = \ - base.h \ - exceptions.h \ - version.h \ - SAMLConfig.h + base.h \ + exceptions.h \ + version.h \ + SAMLConfig.h + +encinclude_HEADERS = \ + encryption/EncryptedKeyResolver.h + +siginclude_HEADERS = \ + signature/ContentReference.h \ + signature/SignableObject.h \ + signature/SignatureProfileValidator.h utilinclude_HEADERS = \ - util/XMLConstants.h + util/SAMLConstants.h saml1coreinclude_HEADERS = \ - saml1/core/Assertions.h + saml1/core/Assertions.h \ + saml1/core/Protocols.h + +saml2coreinclude_HEADERS = \ + saml2/core/Assertions.h \ + saml2/core/Protocols.h + +saml2mdinclude_HEADERS = \ + saml2/metadata/Metadata.h +# saml2/metadata/MetadataFilter.h \ +# saml2/metadata/MetadataProvider.h \ +# saml2/metadata/MetadataResolver.h noinst_HEADERS = \ - internal.h + internal.h libsaml_la_SOURCES = \ - SAMLConfig.cpp \ - saml1/core/impl/AssertionsImpl.cpp \ - util/XMLConstants.cpp + SAMLConfig.cpp \ + encryption/EncryptedKeyResolver.cpp \ + saml1/core/impl/AssertionsImpl.cpp \ + saml1/core/impl/AssertionsSchemaValidators.cpp \ + saml1/core/impl/ProtocolsImpl.cpp \ + saml1/core/impl/ProtocolsSchemaValidators.cpp \ + saml2/core/impl/Assertions20Impl.cpp \ + saml2/core/impl/Assertions20SchemaValidators.cpp \ + saml2/core/impl/Protocols20Impl.cpp \ + saml2/core/impl/Protocols20SchemaValidators.cpp \ + saml2/metadata/impl/MetadataImpl.cpp \ + saml2/metadata/impl/MetadataSchemaValidators.cpp \ + signature/ContentReference.cpp \ + signature/SignatureProfileValidator.cpp \ + util/SAMLConstants.cpp # this is different from the project version # http://sources.redhat.com/autobook/autobook/autobook_91.html -libxmltooling_la_LDFLAGS = -version-info 2:0:0 +libsaml_la_LDFLAGS = -version-info 2:0:0 install-exec-hook: for la in $(lib_LTLIBRARIES) ; do rm -f $(DESTDIR)$(libdir)/$$la ; done