forked from su2code/SU2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
70 lines (60 loc) · 2.06 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
################################################################################
#
# \file Makefile.am
# \brief Global makefile for the SU2 project
# \author M. Colonno, T. Economon, F. Palacios
# \version 4.1.0 "Cardinal"
#
# SU2 Lead Developers: Dr. Francisco Palacios (Francisco.D.Palacios@boeing.com).
# Dr. Thomas D. Economon (economon@stanford.edu).
#
# 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.
#
# Copyright (C) 2012-2015 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/>.
#
################################################################################
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4
# Build third-party optional dependencies first
SUBDIRS = externals
# Build the SU2 C++ common library
SUBDIRS += Common/lib
# Install the SU2 Python scripts to the proper location
if BUILD_NORMAL
SUBDIRS += SU2_PY
endif
# Build each of the SU2 C++ modules
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