# Makefile.am for the SASL library # Rob Earhart # $Id: Makefile.am,v 1.2 2002/05/22 17:58:41 snsimon Exp $ # Copyright (c) 2000 Carnegie Mellon University. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in # the documentation and/or other materials provided with the # distribution. # # 3. The name "Carnegie Mellon University" must not be used to # endorse or promote products derived from this software without # prior written permission. For permission or any other legal # details, please contact # Office of Technology Transfer # Carnegie Mellon University # 5000 Forbes Avenue # Pittsburgh, PA 15213-3890 # (412) 268-4387, fax: (412) 268-7395 # tech-transfer@andrew.cmu.edu # # 4. Redistributions of any form whatsoever must retain the following # acknowledgment: # "This product includes software developed by Computing Services # at Carnegie Mellon University (http://www.cmu.edu/computing/)." # # CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO # THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY # AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE # FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN # AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING # OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # # Library version info - here at the top, for sanity sasl_version = 2:3:0 INCLUDES=-I$(top_srcdir)/include -I$(top_srcdir)/plugins EXTRA_DIST = windlopen.c common_headers = saslint.h plugin_common.h common_sources = auxprop.c canonusr.c checkpw.c client.c common.c config.c external.c md5.c saslutil.c server.c seterror.c plugin_common.c lib_LTLIBRARIES = libsasl2.la libsasl2_la_SOURCES = $(common_sources) dlopen.c $(common_headers) libsasl2_la_LDFLAGS = -version-info $(sasl_version) libsasl2_la_DEPENDENCIES = @LTLIBOBJS@ libsasl2_la_LIBADD = @LTLIBOBJS@ $(SASL_DL_LIB) $(LIB_SOCKET) #static version (optional) lib_LIBRARIES = @SASL_STATIC_LIBS@ EXTRA_LIBRARIES = libsasl2.a libsasl2_a_SOURCES = $(common_sources) staticopen.c $(common_headers) staticopen.h libsasl2_a_DEPENDENCIES = @LIBOBJS@ @SASL_STATIC_OBJS@ ../sasldb/libsasldb.a libsasl2_a_LIBADD = @LIBOBJS@ @SASL_STATIC_OBJS@ $(SASL_DB_BACKEND_STATIC) if MACOSX framedir = /Library/Frameworks/SASL2.framework install-exec-hook: $(mkinstalldirs) $(framedir)/Versions/A ln -fs $(libdir)/libsasl2.dylib $(framedir)/Versions/A/SASL2 cd $(framedir) ; ln -fs Versions/A/SASL2 . else install-exec-hook: endif