Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:54

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 nobase_dist_pcm_DATA = \
0040   CylinderGeom_Mvtx_Dict_rdict.pcm \
0041   MvtxNoiseMap_Dict_rdict.pcm
0042 
0043 # sources for mvtx library
0044 libmvtx_la_SOURCES = \
0045   CylinderGeom_MvtxHelper.cc \
0046   MvtxCombinedRawDataDecoder.cc \
0047   MvtxClusterizer.cc \
0048   MvtxClusterPruner.cc \
0049   MvtxHitPruner.cc \
0050   MvtxHitMap.cc \
0051   MvtxPixelDefs.cc \
0052   MvtxPixelMask.cc
0053 
0054 libmvtx_la_LIBADD = \
0055   libmvtx_io.la \
0056   -lActsCore \
0057   -lCLHEP \
0058   -lcdbobjects \
0059   -lffamodules \
0060   -lffarawobjects \
0061   -lfun4all \
0062   -lfun4allraw \
0063   -lmvtx_decoder \
0064   -lphg4hit \
0065   -lSubsysReco \
0066   -ltrack_io \
0067   -ltrackbase_historic_io
0068 
0069 # sources for io library
0070 libmvtx_io_la_SOURCES = \
0071   $(ROOTDICTS) \
0072   CylinderGeom_Mvtx.cc \
0073   MvtxNoiseMap.cc \
0074   SegmentationAlpide.cc
0075 
0076 libmvtx_io_la_LIBADD = \
0077   -lg4detectors_io \
0078   -lphool
0079 
0080 # Rule for generating table CINT dictionaries.
0081 %_Dict.cc: %.h %LinkDef.h
0082         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0083 
0084 #just to get the dependency
0085 %_Dict_rdict.pcm: %_Dict.cc ;
0086 
0087 
0088 
0089 ################################################
0090 # linking tests
0091 
0092 BUILT_SOURCES = testexternals.cc
0093 
0094 noinst_PROGRAMS = \
0095   testexternals_mvtx_io \
0096   testexternals_mvtx
0097 
0098 testexternals_mvtx_io_SOURCES = testexternals.cc
0099 testexternals_mvtx_io_LDADD = libmvtx_io.la
0100 
0101 testexternals_mvtx_SOURCES = testexternals.cc
0102 testexternals_mvtx_LDADD = libmvtx.la
0103 
0104 testexternals.cc:
0105         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0106         echo "int main()" >> $@
0107         echo "{" >> $@
0108         echo "  return 0;" >> $@
0109         echo "}" >> $@
0110 
0111 ################################################
0112 
0113 clean-local:
0114         rm -f *Dict* $(BUILT_SOURCES) *.pcm