forked from ComputationalThermodynamics/MAGEMin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
76 lines (64 loc) · 3.24 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
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
71
72
73
74
75
76
# CC=gcc
CC=clang
UNAME_S := $(shell uname -s)
EXE_NAME:= MAGEMin
ifeq ($(UNAME_S),Darwin)
CCFLAGS = -Wall -O3 -g -fPIC -Wno-unused-variable -Wno-unused-but-set-variable
# These are the flags to be used if you followed the instructions on the webpage and installed MPICH and NLopt all through homebrew
# Note that we use the apple Accelerate framework to call Lapack routines
LIBS = -lm -framework Accelerate /opt/homebrew/lib/libnlopt.dylib /opt/homebrew/lib/libmpi.dylib
INC = -I/opt/homebrew/include
# LIBS = -lm -framework Accelerate /usr/local/opt/lapack/lib/liblapacke.dylib /usr/local/lib/libnlopt.dylib /usr/local/lib/libmpich.dylib
# INC = -I/usr/local/opt/lapack/include -I/usr/local/include
# This is for a Mac, where we employ the build-in CBLAS and LAPACKE from MacPorts
# LIBS = -lm -framework Accelerate /opt/local/lib/lapack/liblapacke.dylib /usr/local/lib/libnlopt.dylib ~/Software/mpich-3.3.2/mpich-install/lib/libmpich.dylib
# INC = -I/opt/local/include/lapack -I/usr/local/include -I/Users/kausb/Software/mpich-3.3.2/mpich-install/include
endif
ifeq ($(UNAME_S),Linux)
# This is for a Linux:
# -g, -O3, normal vs optimized compilation (~ 2/3 times faster with -O3)
# -Wno-unused-variable -Wno-unused-but-set-variable -Wno-maybe-uninitialized -Wno-unused-result
# -lllalloc
CCFLAGS = -Wall -O3 -g -fPIC -Wno-unused-variable -Wno-unused-result -Wno-unused-function
LIBS += -lm -llapacke -lnlopt -g -L/usr/lib -L/usr/lib/x86_64-linux-gnu/openmpi/lib -lmpi
INC = -I/usr/lib/x86_64-linux-gnu/openmpi/include/
## RUN MAGEMIN ON PLUTON
# CCFLAGS = -Wall -O3 -g -shared -fPIC -Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-result -Wno-unused-function
# LIBS += -lm -L/local/home/nriel/lapack-3.10.0 -llapacke -llapack -lrefblas -lgfortran -L/local/home/nriel/nlopt_install/install/lib -lnlopt -g -L/opt/mpich3/lib -lmpi
# INC = -I/opt/mpich3/include -I/local/home/nriel/lapack-3.10.0/LAPACKE/include -I/local/home/nriel/nlopt_install/install/include
endif
EXE_NAME = MAGEMin
SOURCES=src/MAGEMin.c \
src/initialize.c \
src/TC_database/TC_init_database.c \
src/TC_database/TC_endmembers.c \
src/TC_database/TC_gem_function.c \
src/SB_database/SB_endmembers.c \
src/SB_database/SB_gem_function.c \
src/toolkit.c \
src/io_function.c \
src/gem_function.c \
src/TC_database/gss_init_function.c \
src/TC_database/gss_function.c \
src/TC_database/NLopt_opt_function.c \
src/TC_database/objective_functions.c \
src/TC_database/SS_xeos_PC_mp.c \
src/TC_database/SS_xeos_PC_mb.c \
src/TC_database/SS_xeos_PC_ig.c \
src/TC_database/SS_xeos_PC_um.c \
src/pp_min_function.c \
src/ss_min_function.c \
src/simplex_levelling.c \
src/PGE_function.c \
src/phase_update_function.c \
src/dump_function.c
OBJECTS=$(SOURCES:.c=.o)
.c.o:
$(CC) $(CCFLAGS) -c $< -o $@ $(INC)
all: $(OBJECTS)
$(CC) -o $(EXE_NAME) $(OBJECTS) $(INC) $(LIBS)
rm src/*.o src/TC_database/*.o
lib: $(OBJECTS)
$(CC) -shared -fPIC -o libMAGEMin.dylib $(OBJECTS) $(INC) $(LIBS)
clean:
rm -f src/*.o src/TC_database/*.o src/SB_database/*.o *.dylib MAGEMin