forked from GiuseppeOrlando878776/Progetto-PACS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
74 lines (63 loc) · 2.17 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
################################################################################
#
# \file Makefile.am
# \brief Global makefile for the SU2 project
# \author M. Colonno, T. Economon, F. Palacios
# \version 5.0.0 "Raven"
#
# SU2 Lead Developers: Dr. Francisco Palacios ([email protected]).
# Dr. Thomas D. Economon ([email protected]).
#
# SU2 Developers: Prof. Juan J. Alonso's group at Stanford University.
# Prof. Piero Colonna's group at Delft University of Technology.
# Prof. Nicolas R. Gauger's group at Kaiserslautern University of Technology.
# Prof. Alberto Guardone's group at Polytechnic University of Milan.
# Prof. Rafael Palacios' group at Imperial College London.
# Prof. Edwin van der Weide's group at the University of Twente.
# Prof. Vincent Terrapon's group at the University of Liege.
#
# Copyright (C) 2012-2017 SU2, the open-source CFD code.
#
# SU2 is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# SU2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with SU2. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4
# build third-party optional dependencies first
SUBDIRS = externals
SUBDIRS += Common/lib
if BUILD_PY
SUBDIRS += SU2_PY
endif
if BUILD_CFD
SUBDIRS +=SU2_CFD/obj
endif
if BUILD_DOT
SUBDIRS +=SU2_DOT/obj
endif
if BUILD_MSH
SUBDIRS +=SU2_MSH/obj
endif
if BUILD_DEF
SUBDIRS +=SU2_DEF/obj
endif
if BUILD_SOL
SUBDIRS +=SU2_SOL/obj
endif
if BUILD_GEO
SUBDIRS +=SU2_GEO/obj
endif
if BUILD_PY_WRAPPER
SUBDIRS += SU2_PY/pySU2
endif