## vim: set noexpandtab tabstop=4 shiftwidth=4: ##---------------------------------------------------------------------------- ## PlaQui ##---------------------------------------------------------------------------- ## This file is part of PlaQui. ## ## PlaQui is free software; you can redistribute it and/or modify it under the ## terms of the GNU General Public License as published by the Free Software ## Foundation; either version 2 of the License, or (at your option) any later ## version. ## ## PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY ## WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS ## FOR A PARTICULAR PURPOSE. See the GNU General Public License for more ## details. ## ## You should have received a copy of the GNU General Public License along ## with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple ## Place, Suite 330, Boston, MA 02111-1307 USA ##---------------------------------------------------------------------------- ## Creado: mar nov 18 12:28:57 ART 2003 ## Autores: Leandro Lucarella ##---------------------------------------------------------------------------- ## ## $Id$ ## INCLUDES = \ -I../include \ -I../../Model/include \ ## -DDEBUG \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ @PACKAGE_CFLAGS@ bin_PROGRAMS = plaqui-server noinst_LIBRARIES = libplaquiserver.a plaqui_server_SOURCES = \ main.cpp \ command.cpp \ connection.cpp \ controlclient.cpp \ controlserver.cpp \ httperror.cpp \ httpheaders.cpp \ httpmessage.cpp \ httprequest.cpp \ httpresponse.cpp \ plant.cpp \ receiver.cpp \ response.cpp \ response_parser.cpp \ runnable.cpp \ server.cpp \ string.cpp \ tcpserver.cpp \ transmitter.cpp \ command.h \ connection.h \ controlclient.h \ controlserver.h \ httperror.h \ httpheaders.h \ httpmessage.h \ httprequest.h \ httpresponse.h \ plant.h \ receiver.h \ response.h \ runnable.h \ server.h \ string.h \ tcpserver.h \ transmitter.h libplaquiserver_a_SOURCES = \ command.cpp \ connection.cpp \ controlclient.cpp \ controlserver.cpp \ httperror.cpp \ httpheaders.cpp \ httpmessage.cpp \ httprequest.cpp \ httpresponse.cpp \ plant.cpp \ receiver.cpp \ response.cpp \ response_parser.cpp \ runnable.cpp \ server.cpp \ string.cpp \ tcpserver.cpp \ transmitter.cpp plaqui_server_LDADD = \ @PACKAGE_LIBS@ \ -lsocket++ \ ../src/libplaquiserver.a \ ../../Model/src/libplaquimodel.a