Salome HOME
Version ok de MED avec MEDGUI.
[modules/med.git] / src / MEDMEM / Makefile.in
1 #==============================================================================
2 #  File      : Makefile.in
3 #  Author    : Patrick GOLDBRONN (CEA/DEN/DM2S/SFME/LGLS)
4 #  CVS       : $Header$
5 #==============================================================================
6
7 # source path
8 top_srcdir=@top_srcdir@
9 top_builddir=../..
10 srcdir=@srcdir@
11 VPATH=.:$(srcdir)
12
13 MACHINE=PCLINUX
14
15 @COMMENCE@
16
17
18 EXPORT_PYSCRIPTS = \
19
20
21 EXPORT_HEADERS = \
22 MEDMEM_CellModel.hxx \
23 MEDMEM_Connectivity.hxx \
24 MEDMEM_Coordinate.hxx \
25 MEDMEM_define.hxx \
26 MEDMEM_DriversDef.hxx \
27 MEDMEM_Family.hxx \
28 MEDMEM_Field.hxx \
29 MEDMEM_GenDriver.hxx \
30 MEDMEM_Group.hxx \
31 MEDMEM_Array.hxx \
32 MEDMEM_Exception.hxx \
33 MEDMEM_MedFieldDriver.hxx \
34 MEDMEM_Med.hxx \
35 MEDMEM_MedMedDriver.hxx \
36 MEDMEM_MedMeshDriver.hxx \
37 MEDMEM_ModulusArray.hxx \
38 MEDMEM_SkyLineArray.hxx \
39 MEDMEM_VtkMedDriver.hxx \
40 MEDMEM_Mesh.hxx \
41 MEDMEM_STRING.hxx \
42 MEDMEM_Support.hxx \
43 MEDMEM_Unit.hxx
44
45 # Libraries targets
46
47 LIB=libmedmem.la
48
49 LIB_SRC = \
50 MEDMEM_CellModel.cxx \
51 MEDMEM_Connectivity.cxx \
52 MEDMEM_Coordinate.cxx \
53 MEDMEM_DriversDef.cxx \
54 MEDMEM_Family.cxx \
55 MEDMEM_Field.cxx \
56 MEDMEM_GenDriver.cxx \
57 MEDMEM_Group.cxx \
58 MEDMEM_Med.cxx \
59 MEDMEM_Exception.cxx \
60 MEDMEM_MedMedDriver.cxx \
61 MEDMEM_MedMeshDriver.cxx \
62 MEDMEM_SkyLineArray.cxx \
63 MEDMEM_Mesh.cxx \
64 MEDMEM_Support.cxx \
65 MEDMEM_Unit.cxx \
66
67 #VtkMedDriver.cxx \
68
69
70 # Executables targets
71 BIN = duplicateMED med_test duplicateMEDMESH
72 BIN_SRC = 
73 BIN_SERVER_IDL = 
74 BIN_CLIENT_IDL = 
75
76 TEST_PROGS = test_MEDMEM_ModulusArray test_MEDMEM_Array test_MEDMEM_SkyLineArray test_MEDMEM_CellModel
77
78 CPPFLAGS+=$(MED2_INCLUDES) $(HDF5_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
79 CXXFLAGS+=-ftemplate-depth-42 -I${KERNEL_ROOT_DIR}/include/salome
80 LDFLAGS+=$(MED2_LIBS) $(HDF5_LIBS) -lSalomeLoggerServer -L${KERNEL_ROOT_DIR}/lib/salome
81
82 # build create_mesh :
83 bin: create_mesh create_mesh_c2q4s2 create_mesh_c3h8q4 create_mesh_c3h8q4_wrong create_mesh_c2q4s2_wrong
84
85 create_mesh create_mesh_c2q4s2 create_mesh_c3h8q4: %: %.c
86         $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(MED2_LIBS) $(HDF5_LIBS) $(LDFLAGS) $< 
87
88 @CONCLUDE@