-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
43 lines (39 loc) · 1.07 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
# Makefile for pySpline
SUBDIR_SRC = src/adjoint \
src/OAS
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_INTEL.mk config/config.mk"; \
echo " ";\
echo "The modify this config file as required. With the config file specified, rerun "; \
echo "'make' and the build will start"; \
else make module;\
fi;
clean:
@echo " Making clean ... "
@for subdir in $(SUBDIR_SRC) ; \
do \
echo; \
echo "making $@ in $$subdir"; \
echo; \
(cd $$subdir && make $@) || exit 1; \
done
rm -f *~ config.mk;
rm -f lib/lib* mod/*.mod obj/*
module:
mkdir -p obj
mkdir -p mod
ln -sf config/config.mk config.mk
@for subdir in $(SUBDIR_SRC) ; \
do \
echo "making $@ in $$subdir"; \
echo; \
(cd $$subdir && make) || exit 1; \
done
(cd lib && make)
(cd src/python/f2py && make)