File indexing completed on 2025-08-03 08:16:23
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_FFLAGS = -fno-automatic
0004
0005 AM_LDFLAGS = \
0006 -L$(OPT_SPHENIX)/lhapdf-5.9.1/lib \
0007 -lLHAPDF
0008
0009 pkgdata_DATA = \
0010 params_auau.example.dat \
0011 medium.params.dat \
0012 params.example.dat
0013
0014 bin_PROGRAMS = \
0015 jewel-@PACKAGE_VERSION@-vac \
0016 jewel-@PACKAGE_VERSION@-simple
0017
0018 jewel_@PACKAGE_VERSION@_vac_SOURCES = \
0019 jewel-@PACKAGE_VERSION@.f \
0020 medium-vac.f \
0021 pythia6425mod.f \
0022 meix.f
0023
0024 jewel_@PACKAGE_VERSION@_simple_SOURCES = \
0025 jewel-@PACKAGE_VERSION@.f \
0026 medium-simple.f \
0027 pythia6425mod.f \
0028 meix.f
0029
0030 clean-local:
0031 rm -f $(BUILT_SOURCES)
0032