C++ Interface to Tauola
src/tauolaFortranInterfaces/Makefile
1include ../make.inc
2
3SOURCES_F=tauola_extras.f
4OBJECTS_F=$(SOURCES_F:.f=.o)
5
6SOURCES_C=f_Decay.c f_FilHep.c f_Init.c
7OBJECTS_C=$(SOURCES_C:.c=.o)
8
9%.o: %.c
10 $(CC) $(CFLAGS) $(DEBUG) -I. -I../tauolaCInterfaces -I../tauolaFortranInterfaces -I../utilities -c $< -o $@
11
12%.o: %.f
13 $(F77) $(FFLAGS) $(DEBUG) -I. -c $< -o $@
14
15all: $(OBJECTS_C) $(OBJECTS_F)
16
17clean:
18 rm -f *.o; rm -f *~;