[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / hgm / gsl-t-1 / src

Annotation of OpenXM/src/hgm/gsl-t-1/src/Makefile, Revision 1.4

1.1       takayama    1: #CC=gcc
1.2       takayama    2: AR=ar
1.1       takayama    3: RANLIB=ranlib
1.3       takayama    4: OBJS=t-control.o t-cstd.o t-evolve.o t-rkf45.o t-step.o t-coerce.o t-error.o
                      5: .c.o:
                      6:        ${CC} -c -O2 $<
1.4     ! takayama    7: gsl-t-1.a: make-link-p ${OBJS}
1.1       takayama    8:        if [ ${AR} = ar ]; then \
                      9:        ar ru gsl-t-1.a *.o ; \
                     10:        else \
                     11:        libtool -static -o gsl-t-1.a *.o ; \
                     12:        fi
                     13:        ${RANLIB} gsl-t-1.a
                     14:
1.4     ! takayama   15: make-link-p:
        !            16:        -if [ ! -f .link_done_p ] ; then \
        !            17:        ln -s ../../oxprint/oxprint.h . ; \
        !            18:        touch .link_done_p ; \
        !            19:        fi
1.1       takayama   20: clean:
1.4     ! takayama   21:        rm -f *.o *~ gsl-t-1.a oxprint.h .link_done_p
1.1       takayama   22:
1.2       takayama   23: # Only the MacOS X accepts the above libtool options.
1.1       takayama   24: ## test implementation including the minimum codes from the gsl 4.47
                     25: ## @s/2012/12/23-gsl* (gsl 4.47 code).  See ode-initval, err, sys
                     26: ## h-mle/SO/Prog/hgm
                     27:
                     28: #gsl_errno.h, gsl_math.h, gsl_matrix.h, gsl_odeiv.h, gsl_sys.h

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>