hepmc - Blame information for rev 285
Subversion Repositories:
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 7 | garren | 1 | # This makefile is used to copy files during the "make install" step |
| 2 | |||
| 52 | garren | 3 | INSTALLDIR = @prefix@/examples/@PACKAGE@ |
| 4 | |||
| 7 | garren | 5 | # files to distribute |
| 6 | EXTRA_DIST = \ | ||
| 7 | example_BuildEventFromScratch.cc \ | ||
| 8 | example_EventSelection.cc \ | ||
| 9 | example_MyHerwig.cc \ | ||
| 10 | example_MyPythia.cc \ | ||
| 62 | garren | 11 | example_MyPythiaRead.cc \ |
| 7 | garren | 12 | example_MyPythiaOnlyToHepMC.cc \ |
| 13 | example_MyPythiaWithEventSelection.cc \ | ||
| 35 | garren | 14 | example_PythiaParticle.cc \ |
| 175 | garren | 15 | example_ReadMyPythia.cc \ |
| 7 | garren | 16 | example_UsingIterators.cc \ |
| 234 | garren | 17 | testHerwigCopies.cc \ |
| 18 | testPythiaCopies.cc \ | ||
| 76 | garren | 19 | initPythia.cc \ |
| 20 | PythiaHelper.h \ | ||
| 7 | garren | 21 | initpydata.f \ |
| 67 | garren | 22 | VectorConversion.h \ |
| 204 | garren | 23 | example_UsingIterators.txt |
| 7 | garren | 24 | |
| 25 | install-data-local: | ||
| 52 | garren | 26 | $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) |
| 27 | $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile | ||
| 7 | garren | 28 | for file in $(EXTRA_DIST); do \ |
| 52 | garren | 29 | $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done |
