]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/Makefile.am
Mini bugfix.
[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         response.cpp \
54         response_parser.cpp \
55         runnable.cpp \
56         server.cpp \
57         string.cpp \
58         tcpserver.cpp \
59         transmitter.cpp \
60         command.h \
61         connection.h \
62         controlclient.h \
63         controlserver.h \
64         httperror.h \
65         httpheaders.h \
66         httpmessage.h \
67         httprequest.h \
68         httpresponse.h \
69         plant.h \
70         receiver.h \
71         response.h \
72         runnable.h \
73         server.h \
74         string.h \
75         tcpserver.h \
76         transmitter.h
77
78 libplaquiserver_a_SOURCES = \
79         command.cpp \
80         connection.cpp \
81         controlclient.cpp \
82         controlserver.cpp \
83         httperror.cpp \
84         httpheaders.cpp \
85         httpmessage.cpp \
86         httprequest.cpp \
87         httpresponse.cpp \
88         plant.cpp \
89         receiver.cpp \
90         response.cpp \
91         response_parser.cpp \
92         runnable.cpp \
93         server.cpp \
94         string.cpp \
95         tcpserver.cpp \
96         transmitter.cpp
97
98 plaqui_server_LDADD = \
99         @PACKAGE_LIBS@ \
100         -lsocket++ \
101         ../src/libplaquiserver.a \
102         ../../Model/src/libplaquimodel.a
103