forked from su2code/SU2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
51 lines (40 loc) · 776 Bytes
/
Makefile.am
File metadata and controls
51 lines (40 loc) · 776 Bytes
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
# SU2 global Makefile.am
# Stanford University Aerospace Design Lab
#
# Created: 10/26/12
# Last updated: 03/24/14
#
# Created by: M. Colonno
# Updated by: T. Economon
#
# Major Changes/Contributions:
# METIS & TECIO integration added by Ben Kirk, 3/24/2014
#
##########################
# AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4
# build third-party optional dependencies first
SUBDIRS = externals
SUBDIRS += Common/lib
SUBDIRS += SU2_PY
if BUILD_CFD
SUBDIRS +=SU2_CFD/obj
endif
if BUILD_PRT
SUBDIRS +=SU2_PRT/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