Salome HOME
Fix compilation pb.
[modules/kernel.git] / src / Registry / Makefile.am
1 #  SALOME Registry : Registry server implementation
2 #
3 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5
6 #  This library is free software; you can redistribute it and/or 
7 #  modify it under the terms of the GNU Lesser General Public 
8 #  License as published by the Free Software Foundation; either 
9 #  version 2.1 of the License. 
10
11 #  This library is distributed in the hope that it will be useful, 
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 #  Lesser General Public License for more details. 
15
16 #  You should have received a copy of the GNU Lesser General Public 
17 #  License along with this library; if not, write to the Free Software 
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #
23 #
24 #  File   : Makefile.am
25 #  Author : Guillaume Boulant (CSSI)
26 #  Module : SALOME
27 #  $Header$
28
29 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
30
31 # header files  
32 salomeinclude_HEADERS =\
33         RegistryConnexion.hxx \
34         RegistryService.hxx \
35         SALOME_Registry.hxx
36
37 # Libraries targets
38 lib_LTLIBRARIES = libRegistry.la
39 libRegistry_la_SOURCES =\
40         RegistryConnexion.cxx \
41         RegistryService.cxx 
42
43 libRegistry_la_LDFLAGS  = -no-undefined -version-info=0:0:0
44 libRegistry_la_CPPFLAGS =\
45         -I$(srcdir)/../Basics \
46         -I$(srcdir)/../SALOMELocalTrace \
47         -I$(srcdir)/../NamingService \
48         -I$(srcdir)/../Utils \
49         -I$(top_builddir)/salome_adm/unix \
50         -I$(top_builddir)/idl \
51         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@
52
53 libRegistry_la_LIBADD   =\
54         ../NamingService/libSalomeNS.la \
55         ../Utils/libOpUtil.la \
56         ../SALOMELocalTrace/libSALOMELocalTrace.la \
57         $(top_builddir)/idl/libSalomeIDLKernel.la
58
59
60 # Executables targets
61 bin_PROGRAMS = SALOME_Registry_Server
62 SALOME_Registry_Server_SOURCES  = SALOME_Registry_Server.cxx
63 SALOME_Registry_Server_LDADD    =\
64         libRegistry.la \
65         ../Basics/libSALOMEBasics.la \
66         @CORBA_LIBS@
67 SALOME_Registry_Server_CPPFLAGS =\
68         -I$(srcdir)/../Basics \
69         -I$(srcdir)/../SALOMELocalTrace \
70         -I$(srcdir)/../NamingService \
71         -I$(srcdir)/../Utils \
72         -I$(top_builddir)/salome_adm/unix \
73         -I$(top_builddir)/idl \
74         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@