1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
include ../make.inc
OBJECTS = ludcmp.o MatUtils.o Mat3Utils.o Mat4Utils.o VecUtils.o \
quicksort.o integrate.o \
eigen_gsl.o MultivarGamma.o \
specfunc.o RegGamma.o
libdistfit.a: $(OBJECTS)
$(ARCH) $(ARCHFLAGS) libdltmath.a $(OBJECTS)
$(RANLIB) libdltmath.a
MultivarGamma.o: MultivarGamma.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c MultivarGamma.c
ludcmp.o: ludcmp.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c ludcmp.c
MatUtils.o: MatUtils.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c MatUtils.c
Mat3Utils.o: Mat3Utils.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c Mat3Utils.c
Mat4Utils.o: Mat4Utils.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c Mat4Utils.c
VecUtils.o: VecUtils.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c VecUtils.c
myrandom.o: myrandom.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c myrandom.c
statistics.o: statistics.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c statistics.c
integrate.o: integrate.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c integrate.c
specfunc.o: specfunc.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c specfunc.c
RegGamma.o: RegGamma.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c RegGamma.c
ncbi_math.o: ncbi_math.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c ncbi_math.c
quicksort.o: quicksort.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c quicksort.c
eigen_gsl.o: eigen_gsl.c
$(CC) $(OPT) $(CFLAGS) $(INCDIR) -c eigen_gsl.c
install:
clean:
rm -f $(OBJECTS)
|