hepmc - Blame information for rev 35

Subversion Repositories:
Rev:
Rev Author Line No. Line
7 garren 1 # This makefile is used to copy files during the "make install" step
2  
3 if USE_GMAKE
4 MAKE = gmake
5 endif
6  
7 # files to distribute
8 EXTRA_DIST = \
9 example_BuildEventFromScratch.cc \
10 example_EventSelection.cc \
11 example_MyHerwig.cc \
12 example_MyPythia.cc \
13 example_MyPythiaOnlyToHepMC.cc \
14 example_MyPythiaWithEventSelection.cc \
35 garren 15 example_PythiaParticle.cc \
7 garren 16 example_ReadPDGtable.cc \
17 example_UsingIterators.cc \
18 initpydata.f \
19 example_UsingIterators.txt \
20 PDG_ParticleDataTable.txt
21  
22 install-data-local:
23 $(mkinstalldirs) $(DESTDIR)$(prefix)/examples
24 $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(prefix)/examples/GNUmakefile
25 for file in $(EXTRA_DIST); do \
26 $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(prefix)/examples/$$file; done