blob: e40ac112c6ad81af51cf03b6e89ee457a0b1cfb5 (
plain)
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
|
OPT_HEADS=models/beta1d.hpp statistics/chisq.hpp models/lin1d.hpp\
models/pl1d.hpp models/bl1d.hpp\
core/fitter.hpp models/models.hpp\
core/opt_traits.hpp\
methods/powell/powell_method.hpp models/bpl1d.hpp\
core/freeze_param.hpp\
models/gauss1d.hpp core/optimizer.hpp\
misc/bootstrap.hpp\
models/dl_model.hpp\
models/mul_model.hpp\
models/add_model.hpp\
LDL=-ldl
export CPP=g++
export CC=gcc
export AR = ar rv
export RANLIB = ranlib
export RM=rm -f
export CFLAGS=-DNDEBUG -g -O2 -Wall -c -I .
export CPPFLAGS=-DNDEBUG -g -O2 -Wall -c -I . --ansi -DHAVE_X_ERROR
INC=-I. -I/usr/include/gsl/
LIB= -L./muparser $(LDL) -lmuparser -g -lgsl -lgslcblas
OPT_OBJ=models/models.o version_ctrl.o models/strmodel1d.o
TARGET=liboptcall test_dl.so models/strmodel1d.o models/models.o
all: $(TARGET)
models/models.o:models/models.cc ${OPT_HEADS}
$(CPP) -c $< -o $@ ${INC} ${CPPFLAGS}
version_ctrl.o:version_ctrl.cc
$(CPP) -c $< ${CPPFLAGS}
bin/test.o:test.cc ${OPT_HEADS}
$(CPP) -c $< -o $@ ${INC} ${CPPFLAGS} --ansi
test:${OPT_OBJ} bin/test.o
$(CPP) bin/test.o models/strmodel1d.o models/models.o version_ctrl.o -o $@ ${LIB}
test_dl.so:models/dlmodel_template.c
gcc $< --shared -o $@
models/strmodel1d.o:models/strmodel1d.cc models/strmodel1d.hpp
$(CPP) -c $< -o $@ -I./muparser $(INC) $(CPPFLAGS)
libmuparser:
make -C muparser
liboptcall:
make -C interface
clean:
rm -f `find .|grep \~`
rm -f `find .|grep '\.o'`
rm -f muparser/libmuparser.a
make -C muparser clean
make -C interface clean
distclean:clean
rm -f `find . -iname *.a`
rm -f $(TARGET)
|