]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorcvw <cvw>
Wed, 21 Mar 2012 14:52:42 +0000 (14:52 +0000)
committercvw <cvw>
Wed, 21 Mar 2012 14:52:42 +0000 (14:52 +0000)
src/MEDPartitioner/Makefile.am
src/MEDPartitioner/Test/Makefile.am

index 06db0a502032bba43b876cddf0f7c7995484c9c6..b04a9a0ad7221b73e0b582def144776a959c4b93 100644 (file)
@@ -115,9 +115,26 @@ libmedpartitioner_la_LDFLAGS += \
        ../MEDLoader/libmedloader.la
 
 # Executables targets
+bin_PROGRAMS = medpartitioner
+dist_medpartitioner_SOURCES = medpartitioner.cxx
+medpartitioner_CPPFLAGS = \
+       -I$(srcdir)/../INTERP_KERNEL/Bases \
+       -I$(srcdir)/../MEDCoupling \
+       -I$(srcdir)/../MEDLoader \
+       -I$(srcdir)/../INTERP_KERNEL
+
+if MED_ENABLE_METIS
+  medpartitioner_CPPFLAGS += $(METIS_CPPFLAGS)
+endif
+if MED_ENABLE_SCOTCH
+  medpartitioner_CPPFLAGS += $(SCOTCH_CPPFLAGS)
+endif
+
+medpartitioner_LDADD = libmedpartitioner.la
+
 if MPI_IS_OK
  
-  bin_PROGRAMS = medpartitioner_para
+  bin_PROGRAMS += medpartitioner_para
   dist_medpartitioner_para_SOURCES = medpartitioner_para.cxx
   medpartitioner_para_CPPFLAGS = \
        -I$(srcdir)/../INTERP_KERNEL/Bases \
@@ -129,24 +146,6 @@ if MPI_IS_OK
 
   medpartitioner_para_LDADD = libmedpartitioner.la
 
-else !MPI_IS_OK
-
-  bin_PROGRAMS = medpartitioner
-  dist_medpartitioner_SOURCES = medpartitioner.cxx
-  medpartitioner_CPPFLAGS = \
-       -I$(srcdir)/../INTERP_KERNEL/Bases \
-       -I$(srcdir)/../MEDCoupling \
-       -I$(srcdir)/../MEDLoader \
-       -I$(srcdir)/../INTERP_KERNEL
-
-if MED_ENABLE_METIS
-  medpartitioner_CPPFLAGS += $(METIS_CPPFLAGS)
-endif
-if MED_ENABLE_SCOTCH
-  medpartitioner_CPPFLAGS += $(SCOTCH_CPPFLAGS)
-endif
-
-  medpartitioner_LDADD = libmedpartitioner.la
 endif
 
 OBSOLETE_FILES =
index 83053a6e3b49901c6e6d37e1b7bbda98b6c94f65..175696fc90e24eea835871b7454ea60aa3bf2f8e 100644 (file)
@@ -61,6 +61,19 @@ bin_PROGRAMS = TestMEDPARTITIONER
 TestMEDPARTITIONER_SOURCES = TestMEDPARTITIONER.cxx
 TestMEDPARTITIONER_CPPFLAGS = $(libMEDPARTITIONERTest_la_CPPFLAGS) 
 
+if MPI_IS_OK
+  TestMEDPARTITIONER_CPPFLAGS +=
+       $(MPI_INCLUDES) \
+       $(PARMETIS_CPPFLAGS)
+else
+if MED_ENABLE_METIS
+  TestMEDPARTITIONER_CPPFLAGS += $(METIS_CPPFLAGS)
+endif
+if MED_ENABLE_SCOTCH
+  TestMEDPARTITIONER_CPPFLAGS += $(SCOTCH_CPPFLAGS)
+endif
+endif
+
 TestMEDPARTITIONER_LDADD = \
        $(libMEDPARTITIONERTest_la_LDFLAGS) -lm \
        libMEDPARTITIONERTest.la \