C++InterfacetoTauola
src/tauolaCInterfaces/Makefile
1 include ../make.inc
2 
3 SOURCES_CC=TauolaParticle.cxx TauolaParticlePair.cxx \
4  TauolaEvent.cxx Tauola.cxx \
5  DecayList.cxx
6 OBJECTS_CC=$(SOURCES_CC:.cxx=.o)
7 
8 %.o: %.cxx
9  $(CC) $(CFLAGS) $(DEBUG) -I. -I../utilities -I../tauolaFortranInterfaces -I../eventRecordInterfaces -c $< -o $@
10 
11 all: $(OBJECTS_CC)
12 
13 clean:
14  rm -f *.o; rm -f *~;