diff options
Diffstat (limited to 'debian/htdig/htdig-3.2.0b6/htnet/Makefile.win32')
-rw-r--r-- | debian/htdig/htdig-3.2.0b6/htnet/Makefile.win32 | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/htdig/htdig-3.2.0b6/htnet/Makefile.win32 b/debian/htdig/htdig-3.2.0b6/htnet/Makefile.win32 new file mode 100644 index 00000000..ce0e5f50 --- /dev/null +++ b/debian/htdig/htdig-3.2.0b6/htnet/Makefile.win32 @@ -0,0 +1,21 @@ + +TARGET = $(LIBDIR)/libhtnet$(LIBSFX) + +# ---------------------------------------------------------------------------- +# add new library members to this list + +# ---------------------------------------------------------------------------- + +include ../Makedefs.win32 + +CXXSRC = Connection.cc Transport.cc HtHTTP.cc HtFile.cc HtNNTP.cc \ + HtCookie.cc HtCookieJar.cc HtCookieMemJar.cc HtHTTPBasic.cc \ + HtHTTPSecure.cc SSLConnection.cc HtFTP.cc HtCookieInFileJar.cc + +CPPFLAGS += -DHAVE_CONFIG_H -I../db -I../htlib -I../htword -I../htcommon + +$(TARGET): $(OBJDIRDEP) $(LIBDIRDEP) $(OBJS) + $(AR) $(ARFLAGS) $(OBJS) + +include ../Makerules.win32 + |