File indexing completed on 2025-08-06 08:18:18
0001
0002
0003
0004 AUTOMAKE_OPTIONS = foreign
0005
0006 AM_CPPFLAGS = \
0007 -I$(includedir) \
0008 -isystem$(OFFLINE_MAIN)/include \
0009 -isystem$(ROOTSYS)/include
0010
0011 AM_LDFLAGS = \
0012 -L$(libdir) \
0013 -L$(ROOTSYS)/lib \
0014 -L$(OFFLINE_MAIN)/lib \
0015 -L$(OFFLINE_MAIN)/lib64
0016
0017
0018 lib_LTLIBRARIES = \
0019 libtrackeralign.la
0020
0021 libtrackeralign_la_LIBADD = \
0022 -lFROG \
0023 -lphool \
0024 -lSubsysReco \
0025 -lg4detectors_io \
0026 -ltrack_io \
0027 -ltrackbase_historic_io \
0028 -ltrack_reco \
0029 -ltpc_io
0030
0031 pkginclude_HEADERS = \
0032 AlignmentDefs.h \
0033 MakeMilleFiles.h \
0034 Mille.h \
0035 HelicalFitter.h
0036
0037 pcmdir = $(libdir)
0038
0039 libtrackeralign_la_SOURCES = \
0040 AlignmentDefs.cc \
0041 MakeMilleFiles.cc \
0042 Mille.cc \
0043 HelicalFitter.cc
0044
0045
0046 %_Dict.cc: %.h %LinkDef.h
0047 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0048
0049
0050 %_Dict_rdict.pcm: %_Dict.cc ;
0051
0052
0053
0054
0055 BUILT_SOURCES = \
0056 testexternals.cc
0057
0058 noinst_PROGRAMS = \
0059 testexternals_trackeralign
0060
0061 testexternals_trackeralign_SOURCES = testexternals.cc
0062 testexternals_trackeralign_LDADD = libtrackeralign.la
0063
0064 testexternals.cc:
0065 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0066 echo "int main()" >> $@
0067 echo "{" >> $@
0068 echo " return 0;" >> $@
0069 echo "}" >> $@
0070
0071
0072
0073
0074 clean-local:
0075 rm -f $(BUILT_SOURCES)