]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/Makefile.am
Scripts de configuracion a nivel global.
[z.facultad/75.42/plaqui.git] / Server / src / Makefile.am
1 ## vim: set noexpandtab tabstop=4 shiftwidth=4:
2 ##----------------------------------------------------------------------------
3 ##                                  PlaQui
4 ##----------------------------------------------------------------------------
5 ## This file is part of PlaQui.
6 ##
7 ## PlaQui is free software; you can redistribute it and/or modify it under the
8 ## terms of the GNU General Public License as published by the Free Software
9 ## Foundation; either version 2 of the License, or (at your option) any later
10 ## version.
11 ##
12 ## PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY
13 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 ## FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 ## details.
16 ##
17 ## You should have received a copy of the GNU General Public License along
18 ## with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple
19 ## Place, Suite 330, Boston, MA  02111-1307  USA
20 ##----------------------------------------------------------------------------
21 ## Creado:  mar nov 18 12:28:57 ART 2003
22 ## Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 ##----------------------------------------------------------------------------
24 ##
25 ## $Id$
26 ##
27
28 INCLUDES = \
29         -I../include \
30         -I../../Model/include \
31         -DDEBUG \
32         -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
33         -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
34         @PACKAGE_CFLAGS@
35
36 bin_PROGRAMS = plaqui-server
37
38 noinst_LIBRARIES = libplaquiserver.a
39
40 plaqui_server_SOURCES = \
41         main.cpp \
42         command.cpp \
43         connection.cpp \
44         controlclient.cpp \
45         controlserver.cpp \
46         httperror.cpp \
47         httpheaders.cpp \
48         httpmessage.cpp \
49         httprequest.cpp \
50         httpresponse.cpp \
51         plant.cpp \
52         receiver.cpp \
53         runnable.cpp \
54         server.cpp \
55         string.cpp \
56         tcpserver.cpp \
57         transmitter.cpp \
58         command.h \
59         connection.h \
60         controlclient.h \
61         controlserver.h \
62         httperror.h \
63         httpheaders.h \
64         httpmessage.h \
65         httprequest.h \
66         httpresponse.h \
67         plant.h \
68         receiver.h \
69         runnable.h \
70         server.h \
71         string.h \
72         tcpserver.h \
73         transmitter.h
74
75 libplaquiserver_a_SOURCES = \
76         command.cpp \
77         connection.cpp \
78         controlclient.cpp \
79         controlserver.cpp \
80         httperror.cpp \
81         httpheaders.cpp \
82         httpmessage.cpp \
83         httprequest.cpp \
84         httpresponse.cpp \
85         plant.cpp \
86         receiver.cpp \
87         runnable.cpp \
88         server.cpp \
89         string.cpp \
90         tcpserver.cpp \
91         transmitter.cpp
92
93 plaqui_server_LDADD = \
94         @PACKAGE_LIBS@ \
95         -lsocket++ \
96         ../src/libplaquiserver.a \
97         ../../Model/src/libplaquimodel.a
98