소스 검색

Makefile.am: fix subdirs orders (mpi needs to be compiled before examples)

Nathalie Furmento 12 년 전
부모
커밋
7a78e2537d
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      Makefile.am

+ 4 - 4
Makefile.am

@@ -20,14 +20,14 @@ CLEANFILES = *.gcno *.gcda *.linkinfo
 SUBDIRS = src
 SUBDIRS += tools tests doc
 
-if BUILD_EXAMPLES
-SUBDIRS += examples
-endif
-
 if USE_MPI
 SUBDIRS += mpi
 endif
 
+if BUILD_EXAMPLES
+SUBDIRS += examples
+endif
+
 if BUILD_SOCL
 SUBDIRS += socl
 endif