Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:57

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 BUILT_SOURCES = \
0004   testexternals.cc
0005 
0006 AM_CPPFLAGS = \
0007   -I$(includedir) \
0008   -I$(ONLMON_MAIN)/include \
0009   -isystem$(ONLINE_MAIN)/include \
0010   -isystem$(ROOTSYS)/include
0011 
0012 lib_LTLIBRARIES = \
0013   libonlmonutils.la
0014 
0015 libonlmonutils_la_LIBADD = \
0016   -L$(libdir) \
0017   -L$(ONLINE_MAIN)/lib \
0018   -lonlmonserver \
0019   -lonlmondb
0020 
0021 pkginclude_HEADERS = \
0022   runningMean.h \
0023   pseudoRunningMean.h \
0024   fullRunningMean.h \
0025   triggerEnum.h \
0026   GL1Manager.h  
0027 
0028 libonlmonutils_la_SOURCES = \
0029   runningMean.cc \
0030   pseudoRunningMean.cc \
0031   fullRunningMean.cc \
0032   triggerEnum.cc \
0033   GL1Manager.cc
0034 
0035 noinst_PROGRAMS = \
0036   testexternals
0037 
0038 testexternals_SOURCES = \
0039   testexternals.cc
0040 
0041 testexternals_LDADD = \
0042   libonlmonutils.la
0043 
0044 testexternals.cc:
0045         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0046         echo "int main()" >> $@
0047         echo "{" >> $@
0048         echo "  return 0;" >> $@
0049         echo "}" >> $@
0050 
0051 clean-local:
0052         rm -f $(BUILT_SOURCES)