File indexing completed on 2025-08-05 08:14:37
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 INCLUDES = -I$(includedir) -I$(ROOTSYS)/include -I$(OFFLINE_MAIN)/include -I$(ONLINE_MAIN)/include -I$(MYINSTALL)/include
0004
0005
0006 lib_LTLIBRARIES = libhcal.la
0007
0008
0009 include_HEADERS = \
0010 hcal.h \
0011 hcalLinkDef.h
0012
0013 libhcal_la_SOURCES = \
0014 hcal.C \
0015 hcal_Dict.cxx
0016
0017 libhcal_la_LIBADD = \
0018 -L$(libdir) \
0019 -L$(ONLINE_MAIN)/lib -lNoRootEvent @ROOTLIBS@ @ROOTGLIBS@
0020
0021 hcal_Dict.cxx : hcal.h hcalLinkDef.h
0022 rootcint -f $@ -c $(DEFS) $(INCLUDES) $^
0023
0024 clean-local:
0025 rm -f $(BUILT_SOURCES) *Dict*
0026