Salome HOME
a32f4454c596fc974575ea283e7cc7fcd3d5d2be
[modules/smesh.git] / src / Tools / MeshCut / Makefile.am
1 #  version 2.1 of the License.
2 #
3 #  This library is distributed in the hope that it will be useful,
4 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
5 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
6 #  Lesser General Public License for more details.
7 #
8 #  You should have received a copy of the GNU Lesser General Public
9 #  License along with this library; if not, write to the Free Software
10 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
11 #
12 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
13 #
14
15 #  File   : Makefile.in
16 #  Author : Patrick GOLDBRONN (CEA)
17 #  Modified by : Alexander BORODIN (OCN) - autotools usage
18 #  Module : SMESH
19 #  $Header$
20 #
21 include $(top_srcdir)/adm_local/unix/make_common_starter.am
22
23
24 bin_PROGRAMS = MeshCut
25
26 MeshCut_SOURCES = \
27   MeshCut_Globals.hxx \
28   MeshCut_Carre.hxx \
29   MeshCut_Carre.cxx \
30   MeshCut_Cube.hxx \
31   MeshCut_Cube.cxx \
32   MeshCut_Maillage.hxx \
33   MeshCut_Maillage.cxx \
34   MeshCut_Fonctions.hxx \
35   MeshCut_Fonctions.cxx \
36   MeshCut_Utils.hxx \
37   MeshCut_Utils.cxx \
38   MeshCut_Cas.hxx \
39   MeshCut_Cas.cxx \
40   MeshCut_DC.cxx
41
42 MeshCut_CPPFLAGS =  $(MED2_INCLUDES)
43
44 MeshCut_LDFLAGS =  $(MED2_LIBS) $(HDF5_LIBS)
45
46
47
48 UIPY_FILES =  MeshCutDialog.py
49 BUILT_SOURCES = $(UIPY_FILES)
50 bin_SCRIPTS = $(UIPY_FILES) meshcut_plugin.py
51 clean-local:
52         rm -f $(UIPY_FILES)
53 EXTRA_DIST += MeshCutDialog.ui meshcut_plugin.py
54
55 %.py : %.ui
56         pyuic4 $< -o $@