Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:20:14

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 lib_LTLIBRARIES = \
0007   libmvtx_io.la \
0008   libmvtx.la
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -isystem$(OFFLINE_MAIN)/include  \
0013   -isystem$(ROOTSYS)/include
0014 
0015 AM_LDFLAGS = \
0016   -L$(libdir) \
0017   -L$(ROOTSYS)/lib \
0018   -L$(OFFLINE_MAIN)/lib \
0019   -L$(OFFLINE_MAIN)/lib64
0020 
0021 pkginclude_HEADERS = \
0022   CylinderGeom_Mvtx.h \
0023   CylinderGeom_MvtxHelper.h \
0024   MvtxCombinedRawDataDecoder.h \
0025   MvtxClusterizer.h \
0026   MvtxClusterPruner.h \
0027   MvtxHitPruner.h \
0028   MvtxHitMap.h \
0029   MvtxNoiseMap.h \
0030   MvtxPixelDefs.h \
0031   MvtxPixelMask.h \
0032   SegmentationAlpide.h
0033 
0034 ROOTDICTS = \
0035   CylinderGeom_Mvtx_Dict.cc \
0036   MvtxNoiseMap_Dict.cc
0037 
0038 pcmdir = $(libdir)
0039 # more elegant way to create pcm files (without listing them)
0040 nobase_dist_pcm_DATA = $(ROOTDICTS:.cc=_rdict.pcm)
0041 
0042 # sources for mvtx library
0043 libmvtx_la_SOURCES = \
0044   CylinderGeom_MvtxHelper.cc \
0045   MvtxCombinedRawDataDecoder.cc \
0046   MvtxClusterizer.cc \
0047   MvtxClusterPruner.cc \
0048   MvtxHitPruner.cc \
0049   MvtxHitMap.cc \
0050   MvtxPixelDefs.cc \
0051   MvtxPixelMask.cc
0052 
0053 libmvtx_la_LIBADD = \
0054   libmvtx_io.la \
0055   -lActsCore \
0056   -lCLHEP \
0057   -lcdbobjects \
0058   -lffamodules \
0059   -lffarawobjects \
0060   -lfun4all \
0061   -lfun4allraw \
0062   -lmvtx_decoder \
0063   -lphg4hit \
0064   -lSubsysReco \
0065   -ltrack_io
0066 
0067 # sources for io library
0068 libmvtx_io_la_SOURCES = \
0069   $(ROOTDICTS) \
0070   CylinderGeom_Mvtx.cc \
0071   SegmentationAlpide.cc
0072 
0073 libmvtx_io_la_LIBADD = \
0074   -lg4detectors_io \
0075   -lphool
0076 
0077 # Rule for generating table CINT dictionaries.
0078 %_Dict.cc: %.h %LinkDef.h
0079         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0080 
0081 #just to get the dependency
0082 %_Dict_rdict.pcm: %_Dict.cc ;
0083 
0084 
0085 
0086 ################################################
0087 # linking tests
0088 
0089 BUILT_SOURCES = testexternals.cc
0090 
0091 noinst_PROGRAMS = \
0092   testexternals_mvtx_io \
0093   testexternals_mvtx
0094 
0095 testexternals_mvtx_io_SOURCES = testexternals.cc
0096 testexternals_mvtx_io_LDADD = libmvtx_io.la
0097 
0098 testexternals_mvtx_SOURCES = testexternals.cc
0099 testexternals_mvtx_LDADD = libmvtx.la
0100 
0101 testexternals.cc:
0102         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0103         echo "int main()" >> $@
0104         echo "{" >> $@
0105         echo "  return 0;" >> $@
0106         echo "}" >> $@
0107 
0108 ################################################
0109 
0110 clean-local:
0111         rm -f *Dict* $(BUILT_SOURCES) *.pcm