From: Gonzalo A. <ga...@us...> - 2006-09-08 14:37:11
|
Update of /cvsroot/mod-c/ehtml/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18274/src Modified Files: Makefile.am Log Message: We build new targets (libsession, libdisksession, libsessionid). Index: Makefile.am =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 15 Feb 2006 19:54:36 -0000 1.5 --- Makefile.am 8 Sep 2006 14:37:07 -0000 1.6 *************** *** 12,19 **** AM_CXXFLAGS = $(INCLUDE_DIRS) ! lib_LTLIBRARIES = libehtml.la ! libehtml_la_SOURCES = EHTMLApplication.cpp Common.cpp PageWriter.cpp TagAttribute.cpp \ ! SimpleTagAttribute.cpp StyleAttribute.cpp TagRenderer.cpp Component.cpp Label.cpp \ ! Input.cpp Session.cpp Container.cpp Page.cpp Form.cpp Request.cpp Response.cpp libehtml_la_LDFLAGS = -shared -module --- 12,57 ---- AM_CXXFLAGS = $(INCLUDE_DIRS) ! lib_LTLIBRARIES = libehtml.la libsession.la libdisksession.la libsessionid.la ! bin_PROGRAMS = mod_c_dss ! EHTML_SOURCES = Common.cpp ! EHTML_SOURCES += Component.cpp ! EHTML_SOURCES += Container.cpp ! EHTML_SOURCES += Dictionary.cpp ! EHTML_SOURCES += EHTMLApplication.cpp ! EHTML_SOURCES += Form.cpp ! EHTML_SOURCES += Input.cpp ! EHTML_SOURCES += Label.cpp ! EHTML_SOURCES += MemBuf.cpp ! EHTML_SOURCES += Page.cpp ! EHTML_SOURCES += PageWriter.cpp ! EHTML_SOURCES += Request.cpp ! EHTML_SOURCES += Response.cpp ! EHTML_SOURCES += Session.cpp ! EHTML_SOURCES += SimpleTagAttribute.cpp ! EHTML_SOURCES += StyleAttribute.cpp ! EHTML_SOURCES += TagAttribute.cpp ! EHTML_SOURCES += TagRenderer.cpp ! EHTML_SOURCES += $(COMMON) ! ! libehtml_la_SOURCES = $(EHTML_SOURCES) libehtml_la_LDFLAGS = -shared -module + + mod_c_dss_SOURCES = DefaultSessionServer.cpp DefaultSessionAddress.cpp + mod_c_dss_LDADD = -lpthread + mod_c_dss_CXXFLAGS = $(INCLUDE_DIRS) + + LIBSESS_SOURCES = DefaultSessionAddress.cpp + LIBSESS_SOURCES += DefaultSessionDriver.cpp + libsession_la_SOURCES = $(LIBSESS_SOURCES) + libsession_la_LDFLAGS = -shared -module + + libdisksession_la_SOURCES = DiskSessionDriver.cpp + libdisksession_la_LDFLAGS = -shared -module + + LIBSESSID_SOURCES = DefaultSessionIDDriver.cpp + libsessionid_la_SOURCES = $(LIBSESSID_SOURCES) + libsessionid_la_LDFLAGS = -shared -module + + #SUBDIRS = dss_tool + |