hepmc - Diff between revs 35 and 52
Subversion Repositories:
| Rev 35 | Rev 52 | |||
|---|---|---|---|---|
| Line 1... | Line 1... | |||
| 1 | # This makefile is used to copy files during the "make install" step | 1 | # This makefile is used to copy files during the "make install" step | |
| 2 | 2 | |||
| 3 | if USE_GMAKE | 3 | if USE_GMAKE | |
| 4 | MAKE = gmake | 4 | MAKE = gmake | |
| 5 | endif | 5 | endif | |
| - | 6 | |||
| - | 7 | INSTALLDIR = @prefix@/examples/@PACKAGE@ | ||
| 6 | 8 | |||
| 7 | # files to distribute | 9 | # files to distribute | |
| 8 | EXTRA_DIST = \ | 10 | EXTRA_DIST = \ | |
| 9 | example_BuildEventFromScratch.cc \ | 11 | example_BuildEventFromScratch.cc \ | |
| 10 | example_EventSelection.cc \ | 12 | example_EventSelection.cc \ | |
| Line 18... | Line 20... | |||
| 18 | initpydata.f \ | 20 | initpydata.f \ | |
| 19 | example_UsingIterators.txt \ | 21 | example_UsingIterators.txt \ | |
| 20 | PDG_ParticleDataTable.txt | 22 | PDG_ParticleDataTable.txt | |
| 21 | 23 | |||
| 22 | install-data-local: | 24 | install-data-local: | |
| 23 | $(mkinstalldirs) $(DESTDIR)$(prefix)/examples | - | ||
| 24 | $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(prefix)/examples/GNUmakefile | - | ||
| - | 25 | $(mkinstalldirs) $(DESTDIR)$(INSTALLDIR) | ||
| - | 26 | $(INSTALL_DATA) GNUmakefile.example $(DESTDIR)$(INSTALLDIR)/GNUmakefile | ||
| 25 | for file in $(EXTRA_DIST); do \ | 27 | for file in $(EXTRA_DIST); do \ | |
| 26 | $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(prefix)/examples/$$file; done | - | ||
| - | 28 | $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(INSTALLDIR)/$$file; done | ||
