-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.am
123 lines (112 loc) · 2.81 KB
/
Makefile.am
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
SUB_CPPFLAGS = \
-I@abs_top_builddir@/include \
-I@abs_top_builddir@/cparamlib
SUB_LINKFLAGS = \
-L. -lDRAGON \
-Lcparamlib -lcparamlib \
-L. -lTiXML
LIBTOOL_DEPS = @LIBTOOL_DEPS@
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
AM_CPPFLAGS = $(SUB_CPPFLAGS)
LDADD = $(SUB_LNKFLAGS)
SUBDIRS = cparamlib
export SUB_CPPFLAGS
export SUB_LNKFLAGS
lib_LTLIBRARIES = libDRAGON.la libTiXML.la
libDRAGON_la_SOURCES = dragon.cc \
galaxy.cc \
geometry.cc \
xsec.cc \
particle.cc \
crevolutor.cc \
eloss.cc \
bfield.cc \
diffusion.cc \
gas.cc \
grid.cc \
nucleilist.cc \
utilities.cc \
kamae.cc \
sources.cc \
spectrum.cc \
input.cc \
dmspec.F \
WNEWTR_FUNC_aws.f \
YIELDX_011000_imos.f \
crn6.f \
include/constants.h \
include/geometry.h \
include/errorcode.h \
include/crevolutor.h \
include/galaxy.h \
include/diffusion.h \
include/gas.h \
include/grid.h \
include/input.h \
include/nucleilist.h \
include/particle.h \
include/utilities.h \
include/xsec.h \
include/kamae.h \
include/sources.h \
include/spectrum.h \
include/eloss.h \
include/bfield.h \
include/dragon.h \
cparamlib/libcparamlib.la
libTiXML_la_SOURCES = tinystr.cc \
tinyxml.cc \
tinyxmlerror.cc \
tinyxmlparser.cc \
include/tinyxml.h \
include/tinystr.h
bin_PROGRAMS = DRAGON
DRAGON_LDADD = libDRAGON.la libTiXML.la cparamlib/libcparamlib.la
$(SUB_LNKFLAGS)
DRAGON_SOURCES = main.cc \
libDRAGON.la \
libTiXML.la
EXTRA_DIST = config_files/template.source.param \
start.sh \
cleancode.sh \
output \
m4 \
data/isotope_list.dat \
data/MilkyWay_DR0.5_DZ0.1_DPHI10_RMAX20_ZMAX5_galprop_format.fits.gz \
data/galprop_barpol.dat \
data/galprop_eval_iso_cs_updated.dat \
data/galprop_isotope_cs_updated.dat \
data/galprop_notes.dat \
data/galprop_nucdata.dat \
data/galprop_p_cs_fits.dat \
data/galprop_WNEWTR_082693.CDR.dat \
data/webber_xsec.dat \
data/webber_xsec_total.dat \
data/BUBBLE.DAT \
data/FlukaIneXsec.dat \
data/Fluka_Positron_production.dat \
data/Fluka_Electron_production.dat \
DM/mumu_1000gev_ap.txt \
DM/mumu_1000gev_pos.txt \
examples/run_2D.xml \
examples/run_3D.xml \
examples/run_2D_Fluka.xml \
examples/run_2D_DarkMatter.xml \
examples/run_2D_DarkMatter_DeltaInj.xml \
examples/run_2D_DarkMatter_DarkSusy.xml \
examples/run_3D_DarkMatter.xml \
plots/plot_bc.pro \
plots/plot_leptons.pro \
plots/plot_leptons_DM.pro \
plots/plot_protons.pro \
plots/HEAO3_BC.txt \
plots/PAMELA_posratio.txt \
plots/PAMELA_protons.txt \
plots/pyBC.py \
plots/pyleptons.py \
plots/pyprotons.py
dist-hook:
rm -rf $(distdir)/output/* \
rm -rf $(distdir)/*.la \
rm -rf $(distdir)/m4/*