1 |
AUTOMAKE_OPTIONS = foreign no-dependencies no-installinfo |
2 |
INCLUDES = -I@top_srcdir@ @ROOT_INCLUDES@ |
3 |
LDFLAGS = @ROOT_LDFLAGS@ -llog4cpp |
4 |
SUBDIRS = log mcmd tmtc physics |
5 |
|
6 |
lib_LTLIBRARIES = libyoda.la |
7 |
libyoda_la_SOURCES = PamelaRun.cpp PamelaRun.h \ |
8 |
RunInfo.cpp RunInfo.h \ |
9 |
EventDict.cpp EventDict.h \ |
10 |
SubPacket.cpp SubPacket.h \ |
11 |
PacketType.cpp PacketType.h \ |
12 |
SubDetector.cpp SubDetector.h \ |
13 |
DirectoryStructure.c DirectoryStructure.h \ |
14 |
Algorithm.cpp Algorithm.h NullAlgorithm.cpp \ |
15 |
AlgorithmInfo.cpp AlgorithmInfo.h \ |
16 |
EventHeader.cpp EventHeader.h \ |
17 |
PscuHeader.cpp PscuHeader.h \ |
18 |
EventCounter.cpp EventCounter.h \ |
19 |
PscuEvent.cpp PscuEvent.h \ |
20 |
VarDumpEvent.cpp VarDumpEvent.h \ |
21 |
ArrDumpEvent.cpp ArrDumpEvent.h \ |
22 |
TabDumpEvent.cpp TabDumpEvent.h \ |
23 |
CalibCalEvent.cpp CalibCalEvent.h \ |
24 |
CalibCalPedEvent.cpp CalibCalPedEvent.h \ |
25 |
CalibTrk1Event.cpp CalibTrk1Event.h \ |
26 |
CalibTrk2Event.cpp CalibTrk2Event.h \ |
27 |
CalibTrdEvent.cpp CalibTrdEvent.h \ |
28 |
CalibTofEvent.cpp CalibTofEvent.h \ |
29 |
CalibS4Event.cpp CalibS4Event.h \ |
30 |
RunHeaderEvent.cpp RunHeaderEvent.h \ |
31 |
RunTrailerEvent.cpp RunTrailerEvent.h \ |
32 |
ForcedPktEvent.cpp ForcedPktEvent.h \ |
33 |
CRC.h CRC.c \ |
34 |
Exception.h LinkDef.h |
35 |
|
36 |
libyoda_la_LIBADD = \ |
37 |
physics/tracker/libtrackerevent.la \ |
38 |
physics/anticoinc/libanticoincevent.la \ |
39 |
physics/calorimeter/libcalorimeterevent.la \ |
40 |
tmtc/libtmtcevent.la \ |
41 |
mcmd/libmcmdevent.la \ |
42 |
log/liblogevent.la |
43 |
|
44 |
BUILT_SOURCES = EventDict.cpp EventDict.h |
45 |
SUBPACKET_HEADER_FILES = SubPacket.h EventHeader.h \ |
46 |
PscuHeader.h EventCounter.h \ |
47 |
PscuEvent.h ArrDumpEvent.h VarDumpEvent.h TabDumpEvent.h \ |
48 |
CalibCalEvent.h CalibCalPedEvent.h \ |
49 |
CalibTrk1Event.h CalibTrk2Event.h \ |
50 |
CalibTrdEvent.h CalibTofEvent.h CalibS4Event.h \ |
51 |
RunHeaderEvent.h RunTrailerEvent.h ForcedPktEvent.h \ |
52 |
CRC.h |
53 |
|
54 |
|
55 |
DICT_HEADER_FILES = ${SUBPACKET_HEADER_FILES} \ |
56 |
PacketType.h Algorithm.h AlgorithmInfo.h RunInfo.h |
57 |
|
58 |
EventDict.cpp: ${DICT_HEADER_FILES} LinkDef.h |
59 |
rootcint -f $@ -c ${INCLUDES} $^ |