-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·71 lines (28 loc) · 1.2 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
########################################################################
### ###
### Created by Martin Genet, 2008-2015 ###
### ###
### Laboratoire de Mécanique et de Technologie (LMT), Cachan, France ###
### Lawrence Berkeley National Laboratory, California, USA ###
### University of California at San Francisco, USA ###
### Swiss Federal Institute of Technology (ETH), Zurich, Switzerland ###
### ###
########################################################################
space_ndim = 3
lmt_dir = ../../LMTpp
########################################################################
do: generate
do: compile
########################################################################
generate:
python usub.cpp.py
compile:
gcc -c \
-O3 \
-std=c++11 \
-fPIC \
-DSPACE_NDIM=$(space_ndim) \
-I. \
-I$(lmt_dir)/include \
-o usub.o \
usub.cpp