diff options
| author | Sam Varshavchik | 2013-08-19 16:39:41 -0400 | 
|---|---|---|
| committer | Sam Varshavchik | 2013-08-25 14:43:51 -0400 | 
| commit | 9c45d9ad13fdf439d44d7443ae75da15ea0223ed (patch) | |
| tree | 7a81a04cb51efb078ee350859a64be2ebc6b8813 /tcpd/Makefile.am | |
| parent | a9520698b770168d1f33d6301463bb70a19655ec (diff) | |
| download | courier-libs-9c45d9ad13fdf439d44d7443ae75da15ea0223ed.tar.bz2 | |
Initial checkin
Imported from subversion report, converted to git. Updated all paths in
scripts and makefiles, reflecting the new directory hierarchy.
Diffstat (limited to 'tcpd/Makefile.am')
| -rw-r--r-- | tcpd/Makefile.am | 95 | 
1 files changed, 95 insertions, 0 deletions
| diff --git a/tcpd/Makefile.am b/tcpd/Makefile.am new file mode 100644 index 0000000..81c405d --- /dev/null +++ b/tcpd/Makefile.am @@ -0,0 +1,95 @@ +# +# Copyright 1998 - 2008 Double Precision, Inc.  See COPYING for +# distribution information. + + +DISTCLEANFILES=couriertls.config + +noinst_PROGRAMS=@COURIERTCPD@ @STARTTLS@ tlscachetest +EXTRA_PROGRAMS=couriertls couriertcpd +EXTRA_LTLIBRARIES=libcouriertls.la libcouriertlsopenssl.la libcouriertlsgnutls.la + +BUILT_SOURCES=  couriertcpd.html couriertcpd.1 \ +		couriertls.html couriertls.1 + +EXTRA_DIST=$(BUILT_SOURCES) couriertls.html README.couriertls \ +	testsuite testsuite.txt + +noinst_LTLIBRARIES=libspipe.la @BUILDLIBCOURIERTLS@ @LIBCOURIERTLSOPENSSL@ @LIBCOURIERTLSGNUTLS@ libtlsclient.la + +libcouriertls_la_SOURCES=tlscache.c tlscache.h +libcouriertls_la_LIBADD=@TLSLIBRARY@ +libcouriertls_la_DEPENDENCIES=@TLSLIBRARY@ + +couriertcpd_SOURCES=argparse.c argparse.h \ +	tcpd.c tcpdaccess.c tcpremoteinfo.c tcpremoteinfo.h + +couriertcpd_DEPENDENCIES= libspipe.la \ +	../rfc1035/librfc1035.a \ +	@dblibrary@ \ +	../liblock/liblock.la\ +	../numlib/libnumlib.la\ +	../waitlib/libwaitlib.a\ +	../soxwrap/libsoxwrap.a\ +	../md5/libmd5.la ../random128/librandom128.la + +couriertcpd_t=@NETLIBS@ @soxdep@ + +couriertcpd_LDADD= libspipe.la \ +	../rfc1035/librfc1035.a \ +        @dblibrary@ \ +	../liblock/liblock.la\ +        ../numlib/libnumlib.la\ +        ../waitlib/libwaitlib.a\ +	../soxwrap/libsoxwrap.a\ +	../md5/libmd5.la ../random128/librandom128.la \ +	$(couriertcpd_t:%=-Wl,%) +couriertcpd_LDFLAGS=-static + + +tlscachetest_SOURCES=tlscachetest.c +tlscachetest_DEPENDENCIES=../numlib/libnumlib.la ../liblock/liblock.la +tlscachetest_LDADD=../numlib/libnumlib.la ../liblock/liblock.la +tlscachetest_LDFLAGS=-static + +libspipe_la_SOURCES=spipe.c spipe.h + +couriertls_SOURCES=starttls.c argparse.c argparse.h + +couriertls_t= @soxdep@ + +couriertls_DEPENDENCIES=libcouriertls.la libspipe.la ../rfc1035/librfc1035.a \ +	../md5/libmd5.la ../random128/librandom128.la \ +	../numlib/libnumlib.la ../liblock/liblock.la \ +	../soxwrap/libsoxwrap.a +couriertls_LDADD=libcouriertls.la libspipe.la ../rfc1035/librfc1035.a \ +	../md5/libmd5.la ../random128/librandom128.la \ +	../numlib/libnumlib.la ../liblock/liblock.la \ +	../soxwrap/libsoxwrap.a $(couriertls_t:%=-Wl,%) +couriertls_LDFLAGS=-static + +libcouriertlsopenssl_la_SOURCES=libcouriertls.c libcouriertls.h tlsinfo.c +libcouriertlsopenssl_la_LIBADD=@openssldep@ + +libcouriertlsgnutls_la_SOURCES=libcouriergnutls.c tlsinfo.c +libcouriertlsgnutls_la_LIBADD=@gnutlsdep@ + +libtlsclient_la_SOURCES=tlsclient.c tlsclient.h \ +	tlspasswordcache.c tlspasswordcache.h + +if HAVE_SGML +couriertcpd.html: couriertcpd.sgml ../docbook/sgml2html +	../docbook/sgml2html couriertcpd.sgml couriertcpd.html + +couriertcpd.1: couriertcpd.sgml ../docbook/sgml2html +	../docbook/sgml2man couriertcpd.sgml couriertcpd.1 + +couriertls.html: couriertls.sgml ../docbook/sgml2html +	../docbook/sgml2html couriertls.sgml couriertls.html + +couriertls.1: couriertls.sgml ../docbook/sgml2html +	../docbook/sgml2man couriertls.sgml couriertls.1 +endif + +check-am: +	sh $(srcdir)/testsuite 2>&1 | cmp -s - $(srcdir)/testsuite.txt | 
