-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMakefile
37 lines (29 loc) · 956 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
32
33
34
35
36
37
#Makefile
#Edit for your compiler
# Requires Boost. Change path to where Boost libraries are kept such
# that $(BOOST)include/ contain boost headers and $(BOOST)lib/ contain
# BOOST libraries.
BOOST = /usr/local/
# Intel compiler
CPP = icpc
CFLAGS = -openmp -O2 -ip -W0 -WB -fpp2 -vec_report0 -I$(BOOST)include/
#Gfortran compiler: if pre v4.3 add -D__GFORTRAN__
CPP = g++
CFLAGS = -O2 -I$(BOOST)include/ -I../include
#CFLAGS = -O2 -I$(BOOST)include/ -I../include -I/System/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6/
CPPFLAGS = $(CFLAGS)
CC = $(CPP)
CLSLIB = -L/usr/local/lib -lboost_python
OBJ = maverages.o stock.o main.o
default: quant
all: quant
quant: $(OBJ)
$(CPP) -o ../quant $(OBJ) $(CLSLIB)
%.o: %.cpp
$(CPP) $(CPPFLAGS) -c $*.cpp
%.o: %.c
$(CPP) $(CPPFLAGS) -c $*.c
clean:
-rm -f *.o *.a *.dat ../quant *.mod
cleaner:
-rm -f *.o *.a *.dat ../quant core *.mod ../output/*.txt