hepmc - Blame information for rev 422
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 \ | ||
| 11 | example_MyPythiaOnlyToHepMC.cc \ | ||
| 12 | example_UsingIterators.cc \ | ||
| 390 | garren | 13 | example_PythiaStreamIO.cc \ |
| 234 | garren | 14 | testHerwigCopies.cc \ |
| 15 | testPythiaCopies.cc \ | ||
| 76 | garren | 16 | initPythia.cc \ |
| 17 | PythiaHelper.h \ | ||
| 7 | garren | 18 | initpydata.f \ |
| 67 | garren | 19 | VectorConversion.h \ |
| 204 | garren | 20 | example_UsingIterators.txt |
| 7 | garren | 21 | |
| 22 | install-data-local: | ||
| 52 | garren | 23 | $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) |
| 24 | $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile | ||
| 7 | garren | 25 | for file in $(EXTRA_DIST); do \ |
| 52 | garren | 26 | $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done |
