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