-
Notifications
You must be signed in to change notification settings - Fork 99
/
Makefile
32 lines (26 loc) · 935 Bytes
/
Makefile
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
# Master makefile for ADflow. The actual makefile you want is:
# src/build/Makefile
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 adflow_build;\
fi;
clean:
rm -fr src/build/*.mod
rm -fr src/build/*.o
rm -fr src/build/*.a
rm -fr src/build/*.so
rm -fr src/build/adflow_project.dep
rm -f *~ config.mk;
adflow_build:
ln -sf config/config.mk config.mk;
(cd src/build/ && make)