hepmc - Blame information for rev 175
Subversion Repositories:
| 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 | |||
| 52 | garren | 7 | INSTALLDIR = @prefix@/examples/@PACKAGE@ |
| 8 | |||
| 7 | garren | 9 | # files to distribute |
| 10 | EXTRA_DIST = \ | ||
| 11 | example_BuildEventFromScratch.cc \ | ||
| 12 | example_EventSelection.cc \ | ||
| 13 | example_MyHerwig.cc \ | ||
| 14 | example_MyPythia.cc \ | ||
| 62 | garren | 15 | example_MyPythiaRead.cc \ |
| 7 | garren | 16 | example_MyPythiaOnlyToHepMC.cc \ |
| 17 | example_MyPythiaWithEventSelection.cc \ | ||
| 35 | garren | 18 | example_PythiaParticle.cc \ |
| 175 | garren | 19 | example_ReadMyPythia.cc \ |
| 7 | garren | 20 | example_ReadPDGtable.cc \ |
| 21 | example_UsingIterators.cc \ | ||
| 76 | garren | 22 | initPythia.cc \ |
| 23 | PythiaHelper.h \ | ||
| 7 | garren | 24 | initpydata.f \ |
| 67 | garren | 25 | VectorConversion.h \ |
| 7 | garren | 26 | example_UsingIterators.txt \ |
| 27 | PDG_ParticleDataTable.txt | ||
| 28 | |||
| 29 | install-data-local: | ||
| 52 | garren | 30 | $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) |
| 31 | $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile | ||
| 7 | garren | 32 | for file in $(EXTRA_DIST); do \ |
| 52 | garren | 33 | $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done |
