1 2include $(top_srcdir)/Makefile.config 3 4pkglib_LTLIBRARIES = libhtnet.la 5 6libhtnet_la_SOURCES = Connection.cc Transport.cc HtHTTP.cc HtFile.cc \ 7 HtNNTP.cc HtFTP.cc HtCookie.cc HtCookieJar.cc HtCookieMemJar.cc \ 8 HtCookieInFileJar.cc HtHTTPBasic.cc HtHTTPSecure.cc SSLConnection.cc 9 10libhtnet_la_LDFLAGS = -release $(HTDIG_MAJOR_VERSION).$(HTDIG_MINOR_VERSION).$(HTDIG_MICRO_VERSION) ${extra_ldflags} 11 12pkginclude_HEADERS = \ 13 Connection.h \ 14 Transport.h \ 15 HtHTTP.h \ 16 HtFile.h \ 17 HtFTP.h \ 18 HtNNTP.h \ 19 HtCookie.h \ 20 HtCookieJar.h \ 21 HtCookieMemJar.h \ 22 HtCookieInFileJar.h \ 23 HtHTTPBasic.h \ 24 HtHTTPSecure.h \ 25 SSLConnection.h 26