C++InterfacetoTauola
src/eventRecordInterfaces/Makefile
1 include ../make.inc
2 
3 OBJECTS_CC = TauolaHEPEVTEvent.o TauolaHEPEVTParticle.o
4 
5 ifneq ($(HEPMCLOCATION), )
6  OBJECTS_CC += TauolaHepMCParticle.o TauolaHepMCEvent.o
7 endif
8 
9 ifneq ($(HEPMC3LOCATION), )
10  OBJECTS_CC += TauolaHepMC3Particle.o TauolaHepMC3Event.o
11 endif
12 
13 all: $(OBJECTS_CC)
14 
15 
16 TauolaHEPEVTEvent.o: TauolaHEPEVTEvent.cxx
17  $(CC) $(CFLAGS) $(DEBUG) -I. -I../tauolaCInterfaces -I../tauolaFortranInterfaces -I../utilities -c $< -o $@
18 
20  $(CC) $(CFLAGS) $(DEBUG) -I. -I../tauolaCInterfaces -I../tauolaFortranInterfaces -I../utilities -c $< -o $@
21 
23  $(CC) $(CFLAGS) $(DEBUG) -I. -I../tauolaCInterfaces -I../tauolaFortranInterfaces -I../utilities -I$(HEPMCLOCATION)/include -c $< -o $@
24 
26  $(CC) $(CFLAGS) $(DEBUG) -I. -I../tauolaCInterfaces -I../tauolaFortranInterfaces -I../utilities -I$(HEPMCLOCATION)/include -c $< -o $@
27 
29  $(CC) $(CFLAGS) $(DEBUG) -I. -I../tauolaCInterfaces -I../tauolaFortranInterfaces -I../utilities -I$(HEPMC3LOCATION)/include -c $< -o $@
30 
32  $(CC) $(CFLAGS) $(DEBUG) -I. -I../tauolaCInterfaces -I../tauolaFortranInterfaces -I../utilities -I$(HEPMC3LOCATION)/include -c $< -o $@
33 
34 
35 clean:
36  rm -f *.o; rm -f *~;
37 
Interface to HepMC::GenParticle objects.
Interface to HepMC::GenEvent objects.
Single particle of HEPEVT event record.
Interface to GenParticle objects.
Interface to GenEvent objects.