]> SALOME platform Git repositories - modules/yacs.git/blob - src/bases/Makefile.am
Salome HOME
Fix make check with Python 2.7
[modules/yacs.git] / src / bases / Makefile.am
1 # Copyright (C) 2006-2012  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 include $(top_srcdir)/adm/unix/make_begin.am
21
22 SUBDIRS = Test
23
24 noinst_LTLIBRARIES = libYACSBases.la
25
26 libYACSBases_la_SOURCES =                         \
27     Exception.cxx Thread.cxx AlternateThread.cxx  \
28     Mutex.cxx Semaphore.cxx DynLibLoader.cxx      \
29     Cstr2d.cxx YacsTrace.cxx chrono.cxx           \
30         $(__dummy__)
31
32 EXTRA_libYACSBases_la_SOURCES =                   \
33         Thread.hxx ThreadPT.hxx ThreadPT.cxx          \
34         AlternateThread.hxx AlternateThreadPT.hxx     \
35         AlternateThreadPT.cxx                         \
36         Mutex.hxx MutexPT.cxx MutexPT.hxx             \
37         Semaphore.hxx SemaphorePT.cxx SemaphorePT.hxx \
38         DynLibLoader.hxx Exception.hxx chrono.hxx     \
39         $(__dummy__)
40
41 if WINDOWS
42 EXTRA_libYACSBases_la_SOURCES += DynLibLoaderWin.hxx
43 else
44 EXTRA_libYACSBases_la_SOURCES += DynLibLoaderGNU.hxx
45 endif
46
47 libYACSBases_la_LIBADD = $(PTHREAD_LIBS)
48
49 salomeinclude_HEADERS =        \
50            YACSBasesExport.hxx \
51            Cstr2d.hxx \
52            define.hxx \
53            DynLibLoaderGNU.hxx \
54            DynLibLoader.hxx \
55            DynLibLoaderWin.hxx \
56            Exception.hxx \
57            Mutex.hxx \
58            MutexPT.hxx \
59            Semaphore.hxx \
60            SemaphorePT.hxx \
61            Thread.hxx \
62            ThreadPT.hxx \
63            AlternateThread.hxx \
64            AlternateThreadPT.hxx \
65            YacsTrace.hxx \
66            yacsconfig.h \
67            chrono.hxx \
68            $(__dummy__)
69
70 AM_CXXFLAGS = $(THREAD_DEF)
71
72 EXTRA_DIST=ThreadPT.cxx AlternateThreadPT.cxx MutexPT.cxx \
73                    SemaphorePT.cxx  DynLibLoaderGNU.cxx
74
75 include $(top_srcdir)/adm/unix/make_end.am