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