File indexing completed on 2025-08-03 08:20:57
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(ROOTSYS)/include
0006
0007 lib_LTLIBRARIES = \
0008 libpoms.la
0009
0010 pkginclude_HEADERS = \
0011 Poms.h
0012
0013 libpoms_la_LIBADD = \
0014 -L$(libdir) \
0015 -lonlmonclient
0016
0017 libpoms_la_SOURCES = \
0018 Poms.cc
0019
0020 noinst_PROGRAMS = \
0021 testexternals
0022
0023 testexternals_SOURCES = \
0024 testexternals.cc
0025
0026 testexternals_LDADD = \
0027 libpoms.la
0028
0029 testexternals.cc:
0030 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0031 echo "int main()" >> $@
0032 echo "{" >> $@
0033 echo " return 0;" >> $@
0034 echo "}" >> $@
0035
0036
0037 clean-local:
0038 rm -f $(BUILT_SOURCES)