blob: ce0e5f50426173bccbf474712903169841dfc965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|