Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-03 08:12:35

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem$(ROOTSYS)/include
0007 
0008 AM_LDFLAGS = \
0009   -L$(libdir) \
0010   -L$(OFFLINE_MAIN)/lib \
0011   -L$(OFFLINE_MAIN)/lib64
0012 
0013 pkginclude_HEADERS = \
0014   EventInfo.h \
0015   Tower.h \
0016   JetInfo.h
0017 
0018 lib_LTLIBRARIES = \
0019   libVandyClasses.la
0020 
0021 # Include the dictionary in the main library sources
0022 libVandyClasses_la_SOURCES = \
0023   Tower.cc \
0024   JetInfo.cc \
0025   VandyClasses_Dict.cc
0026 
0027 libVandyClasses_la_LIBADD = \
0028   -L$(libdir) \
0029   -L$(OFFLINE_MAIN)/lib \
0030   -lphool
0031 
0032 # Rule for the ROOT Dictionary
0033 # Note: We explicitly list the headers so rootcling knows what to parse
0034 VandyClasses_Dict.cc: EventInfo.h Tower.h JetInfo.h VandyClassesLinkDef.h
0035         rootcling -f $@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0036 
0037 # Ensure the .pcm file is installed so ROOT can find the dictionary at runtime
0038 pcmdir = $(libdir)
0039 nobase_dist_pcm_DATA = \
0040   VandyClasses_Dict_rdict.pcm
0041 
0042 BUILT_SOURCES = testexternals.cc VandyClasses_Dict.cc
0043 
0044 noinst_PROGRAMS = \
0045   testexternals
0046 
0047 testexternals_SOURCES = testexternals.cc
0048 testexternals_LDADD   = libVandyClasses.la
0049 
0050 testexternals.cc:
0051         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0052         echo "int main()" >> $@
0053         echo "{" >> $@
0054         echo "  return 0;" >> $@
0055         echo "}" >> $@
0056 
0057 clean-local:
0058         rm -f $(BUILT_SOURCES) *.pcm VandyClasses_Dict.*