1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
## $Id: Makefile.am,v 1.26.2.1 2005/08/12 00:03:05 cantor Exp $
AUTOMAKE_OPTIONS = foreign
lib_LTLIBRARIES = libsaml.la
libsamlincludedir = $(includedir)/saml
libsamlinclude_HEADERS = saml.h config_pub.h version.h SAMLDateTime.h hresult.h
noinst_HEADERS = internal.h resource.h
libsaml_la_SOURCES = \
Iterator.cpp \
NDC.cpp \
QName.cpp \
SAMLAction.cpp \
SAMLArtifact.cpp \
SAMLAssertion.cpp \
SAMLAttribute.cpp \
SAMLAttributeDesignator.cpp \
SAMLAttributeQuery.cpp \
SAMLAttributeStatement.cpp \
SAMLAudienceRestrictionCondition.cpp \
SAMLAuthenticationQuery.cpp \
SAMLAuthenticationStatement.cpp \
SAMLAuthorityBinding.cpp \
SAMLAuthorizationDecisionQuery.cpp \
SAMLAuthorizationDecisionStatement.cpp \
SAMLBinding.cpp \
SAMLBrowserProfile.cpp \
SAMLCondition.cpp \
SAMLConfig.cpp \
SAMLDateTime.cpp \
SAMLDecision.cpp \
SAMLDoNotCacheCondition.cpp \
SAMLEvidence.cpp \
SAMLException.cpp \
SAMLIdentifier.cpp \
SAMLNameIdentifier.cpp \
SAMLObject.cpp \
SAMLQuery.cpp \
SAMLRequest.cpp \
SAMLResponse.cpp \
SAMLSignedObject.cpp \
SAMLSOAPBinding.cpp \
SAMLSOAPHTTPBinding.cpp \
SAMLStatement.cpp \
SAMLSubject.cpp \
SAMLSubjectQuery.cpp \
SAMLSubjectStatement.cpp \
XML.cpp
# this is different from the project version
# http://sources.redhat.com/autobook/autobook/autobook_91.html
libsaml_la_LDFLAGS = -version-info 5:1:0
install-exec-hook:
for la in $(lib_LTLIBRARIES) ; do rm -f $(DESTDIR)$(libdir)/$$la ; done
EXTRA_DIST = saml.dsp config_pub.h.in config_pub_win32.h resource.h saml.rc
|