forked from mdolab/adflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile_CS
49 lines (45 loc) · 1.47 KB
/
Makefile_CS
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
# Master makefilefor complex ADflow. The actual makefile you want is
# src/build/Makefile_CS
default:
# Check if the config.mk file is in the config dir.
@if [ ! -f "config/config.mk" ]; then \
echo "Before compiling, copy an existing config file from the "; \
echo "config/defaults/ directory to the config/ directory and "; \
echo "rename to config.mk. For example:"; \
echo " ";\
echo " cp config/defaults/config.LINUX_GFORTRAN.mk config/config.mk"; \
echo " ";\
echo "The modify this config file as required. Typically the CGNS directory "; \
echo "will have to be modified. With the config file specified, rerun "; \
echo "'make' and the build will start"; \
else make -f Makefile_CS adflow_build;\
fi;
clean:
rm -fr src_cs/build/*.mod
rm -fr src_cs/build/*.o
rm -fr src_cs/build/*.a
rm -fr src_cs/build/*.so
rm -fr src_cs/build/adflow_project.dep
rm -f *~ config.mk;
# Completely nuke most of the directories
rm -fr src_cs/adjoint
rm -fr src_cs/ADT
rm -fr src_cs/bcdata
rm -fr src_cs/initFlow
rm -fr src_cs/inputParam
rm -fr src_cs/NKSolver
rm -fr src_cs/metis-4.0
rm -fr src_cs/output
rm -fr src_cs/overset
rm -fr src_cs/partitioning
rm -fr src_cs/slidingComm
rm -fr src_cs/solver
rm -fr src_cs/turbulence
rm -fr src_cs/utils
rm -fr src_cs/wallDistance
rm -fr src_cs/warping
adflow_build:
ln -sf config/config.mk config.mk;
(cd src_cs/build/ && make -f Makefile1 directories)
(cd src_cs/build/ && make -f Makefile1 complexify)
(cd src_cs/build/ && make)