Annotation of rpl/rplcas/Makefile.in, revision 1.3

1.1       bertrand    1: srcdir=@srcdir@
                      2: top_builddir=@abs_top_builddir@
                      3: 
1.3     ! bertrand    4: .PHONY: configure clean
        !             5: 
        !             6: all:
        !             7:    make @GMP@/lib/libgmp.a
        !             8:    make @MPFR@/lib/libmpfr.a
        !             9:    make @NTL@/lib/ntl.a
        !            10:    make @COCOA@/lib/libcocoa.a
        !            11:    make @FLTK@/lib/libfltk.a
1.2       bertrand   12: 
                     13: @GMP@/lib/libgmp.a:
1.1       bertrand   14:    if [ ! -d @GMP@ ]; then \
                     15:        mkdir @GMP@; \
                     16:    fi
                     17:    if [ ! -f @GMP@/config.log ]; then \
                     18:        (cd @GMP@ && ../$(srcdir)/@GMP@/configure --with-readline=no \
                     19:                --prefix=$(top_builddir)/rplcas/@GMP@); \
                     20:    fi
1.3     ! bertrand   21:    make -C @GMP@ all && make -C @GMP@ install
        !            22: 
        !            23: @MPFR@/lib/libmpfr.a: @GMP@/lib/libgmp.a
1.2       bertrand   24:    if [ ! -d @MPFR@ ]; then \
                     25:        mkdir @MPFR@ ; \
                     26:    fi
1.1       bertrand   27:    if [ ! -f @MPFR@/config.log ]; then \
                     28:        (cd @MPFR@ && ../$(srcdir)/@MPFR@/configure --with-gmp=../@GMP@ \
                     29:                --prefix=$(top_builddir)/rplcas/@MPFR@); \
                     30:    fi
1.3     ! bertrand   31:    make -C @MPFR@ all && make -C @MPFR@ install
        !            32: 
        !            33: @NTL@/lib/ntl.a:
1.2       bertrand   34:    if [ ! -d @NTL@/lib ]; then \
                     35:        mkdir -p @NTL@/lib ; \
                     36:    fi
1.3     ! bertrand   37:    make -C @NTL@/src && cp @NTL@/src/ntl.a @NTL@/lib/ntl.a
        !            38: 
        !            39: @COCOA@/lib/libcocoa.a: @GMP@/lib/libgmp.a
1.2       bertrand   40:    if [ ! -f @COCOA@/configuration/autoconf.mk ]; then \
                     41:        (cd @COCOA@ && ./configure --with-libgmp=../@GMP@/lib/libgmp.a \
                     42:                --with-libgsl=../../tools/@GSL@/.libs/libgsl.a) ;\
                     43:    fi
1.3     ! bertrand   44:    make -C @COCOA@ library
        !            45: 
        !            46: @FLTK@/lib/libfltk.a:
1.2       bertrand   47:    if [ ! -f @FLTK@/config.log ]; then \
                     48:        (cd @FLTK@ && ./configure \
                     49:                --prefix=$(top_builddir)/rplcas/@FLTK@ \
                     50:                --disable-xinerama --disable-xft --disable-xdbe); \
                     51:    fi
1.3     ! bertrand   52:    make -C @FLTK@
1.1       bertrand   53: 
                     54: install: all
                     55: 
1.3     ! bertrand   56: clean:
1.2       bertrand   57: 
                     58: distdir:

CVSweb interface <joel.bertrand@systella.fr>