File indexing completed on 2025-08-06 08:17:36
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = libcompressor.la
0004
0005 AM_CPPFLAGS = \
0006 -I$(includedir) \
0007 -I$(OFFLINE_MAIN)/include \
0008 -isystem$(ROOTSYS)/include
0009
0010 libcompressor_la_LDFLAGS = \
0011 -L$(libdir) \
0012 -L$(OFFLINE_MAIN)/lib \
0013 `root-config --libs`
0014
0015 pkginclude_HEADERS = \
0016 compressor.h
0017
0018 libcompressor_la_SOURCES = \
0019 compress_clu_res_float32.cc
0020
0021
0022
0023
0024 BUILT_SOURCES = \
0025 testexternals.cc
0026
0027 noinst_PROGRAMS = \
0028 testexternals
0029
0030 testexternals_SOURCES = \
0031 testexternals.cc
0032
0033 testexternals_LDADD = \
0034 libcompressor.la
0035
0036 testexternals.cc:
0037 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0038 echo "int main()" >> $@
0039 echo "{" >> $@
0040 echo " return 0;" >> $@
0041 echo "}" >> $@
0042
0043 clean-local:
0044 rm -f testexternals.cc