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

1.1       bertrand    1: srcdir=@srcdir@
                      2: top_builddir=@abs_top_builddir@
1.12      bertrand    3: CFLAGS=@CFLAGS@
                      4: CXXFLAGS=@CXXFLAGS@
                      5: LDFLAGS=@LDFLAGS@
1.25      bertrand    6: OBJEXT=@OBJEXT@
1.12      bertrand    7: 
1.39      bertrand    8: .PHONY: configure clean distclean
1.3       bertrand    9: 
1.7       bertrand   10: all: lib/librplcas.a
1.2       bertrand   11: 
1.25      bertrand   12: lib/@LIB_PREFIX@gmp.a:
1.1       bertrand   13:    if [ ! -d @GMP@ ]; then \
                     14:        mkdir @GMP@; \
                     15:    fi
                     16:    if [ ! -f @GMP@/config.log ]; then \
1.12      bertrand   17:        (cd @GMP@ && \
1.13      bertrand   18:                CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
1.10      bertrand   19:                ../$(srcdir)/@GMP@/configure --with-readline=no \
1.49      bertrand   20:                --host=@HOST@ --enable-cxx \
1.4       bertrand   21:                --disable-shared --enable-static \
                     22:                --prefix=$(top_builddir)/rplcas); \
1.1       bertrand   23:    fi
1.16      bertrand   24:    $(MAKE) -C @GMP@ $(AM_MAKEFLAGS) all && \
                     25:            $(MAKE) -C $(AM_MAKEFLAGS) @GMP@ install
1.3       bertrand   26: 
1.25      bertrand   27: lib/@LIB_PREFIX@mpfr.a: lib/@LIB_PREFIX@gmp.a
1.2       bertrand   28:    if [ ! -d @MPFR@ ]; then \
                     29:        mkdir @MPFR@ ; \
                     30:    fi
1.1       bertrand   31:    if [ ! -f @MPFR@/config.log ]; then \
1.28      bertrand   32:        if [ @BUILD@ = @HOST@ ]; then \
                     33:            (cd @MPFR@ && \
                     34:                    CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
                     35:                    ../$(srcdir)/@MPFR@/configure \
                     36:                    --with-gmp=$(top_builddir)/rplcas \
                     37:                    --disable-shared --enable-static \
                     38:                    --prefix=$(top_builddir)/rplcas); \
                     39:        else \
                     40:            (cd @MPFR@ && \
                     41:                    CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
                     42:                    ../$(srcdir)/@MPFR@/configure \
                     43:                    --host=@HOST@ \
                     44:                    --with-gmp=$(top_builddir)/rplcas \
                     45:                    --disable-shared --enable-static \
                     46:                    --prefix=$(top_builddir)/rplcas); \
                     47:        fi; \
1.1       bertrand   48:    fi
1.16      bertrand   49:    $(MAKE) -C @MPFR@ $(AM_MAKEFLAGS) all && \
                     50:            $(MAKE) -C @MPFR@ $(AM_MAKEFLAGS) install
1.3       bertrand   51: 
1.44      bertrand   52: lib/@LIB_PREFIX@mpfi.a: lib/@LIB_PREFIX@gmp.a lib/@LIB_PREFIX@mpfr.a
                     53:    if [ ! -d @MPFI@ ]; then \
                     54:        mkdir @MPFI@ ; \
                     55:    fi
                     56:    if [ ! -f @MPFI@/config.log ]; then \
                     57:        if [ @BUILD@ = @HOST@ ]; then \
                     58:            (cd @MPFI@ && \
                     59:                    CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
                     60:                    ../$(srcdir)/@MPFI@/configure \
                     61:                    --with-gmp=$(top_builddir)/rplcas \
                     62:                    --with-mpfr=$(top_builddir)/rplcas \
                     63:                    --disable-shared --enable-static \
                     64:                    --prefix=$(top_builddir)/rplcas); \
                     65:        else \
                     66:            (cd @MPFI@ && \
                     67:                    CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
                     68:                    ../$(srcdir)/@MPFI@/configure \
                     69:                    --host=@HOST@ \
                     70:                    --with-gmp=$(top_builddir)/rplcas \
                     71:                    --with-mpfr=$(top_builddir)/rplcas \
                     72:                    --disable-shared --enable-static \
                     73:                    --prefix=$(top_builddir)/rplcas); \
                     74:        fi; \
                     75:    fi
                     76:    $(MAKE) -C @MPFI@ $(AM_MAKEFLAGS) all && \
                     77:            $(MAKE) -C @MPFI@ $(AM_MAKEFLAGS) install
                     78: 
1.18      bertrand   79: lib/ntl.a:
1.28      bertrand   80:    if [ @BUILD@ = @HOST@ ]; then \
                     81:        (cd @NTL@/src && ./configure GMP_PREFIX=$(top_builddir)/rplcas \
1.47      bertrand   82:                SHARED=off CXXFLAGS="$(CXXFLAGS)"); \
1.28      bertrand   83:    else \
                     84:        (cd @NTL@/src && ./configure GMP_PREFIX=$(top_builddir)/rplcas \
                     85:                SHARED=off CC=@HOST@-gcc CXX=@HOST@-g++ \
1.47      bertrand   86:                CXXFLAGS="@SYSROOT@ $(CXXFLAGS)" \
1.28      bertrand   87:                LDFLAGS="-L@SYSROOT2@/usr/lib"); \
                     88:    fi
1.30      bertrand   89:    (cd @NTL@/src && \
1.32      bertrand   90:        if [ -z '$(make -v | grep "^GNU Make")' -a $(shell uname) != Linux ]; \
                     91:                    then \
1.30      bertrand   92:                sed 's/make /gmake /g' makefile > makefile2 && \
                     93:                \mv -f makefile2 makefile && \
                     94:                sed 's/make /gmake /g' WizardAux > WizardAux2 && \
1.32      bertrand   95:                \mv -f WizardAux2 WizardAux; \
1.30      bertrand   96:        fi && \
                     97:        $(MAKE) $(AM_MAKEFLAGS) -f makefile)
1.59      bertrand   98:    if [ ! -d lib ]; then \
                     99:        mkdir lib; \
                    100:    fi; \
                    101:    if [ ! -d include ]; then \
                    102:        mkdir include; \
                    103:    fi; \
1.4       bertrand  104:    cp @NTL@/src/ntl.a lib/ntl.a
                    105:    cp -R @NTL@/include/NTL include
1.3       bertrand  106: 
1.25      bertrand  107: lib/libpari.a: lib/@LIB_PREFIX@gmp.a
1.4       bertrand  108:    if [ ! -f @PARI@/configured ]; then \
1.28      bertrand  109:        if [ @BUILD@ = @HOST@ ]; then \
                    110:            (cd @PARI@ && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
                    111:                    LDFLAGS="$(LDFLAGS)" \
                    112:                    ./Configure --prefix=$(top_builddir)/rplcas \
                    113:                    --with-gmp=../lib/libgmp.a \
                    114:                    --without-readline --graphic=none -s); \
                    115:        else \
                    116:            (cd @PARI@ && CC=@HOST@-gcc LD=@HOST@-ld \
                    117:                    CFLAGS="@SYSROOT@ $(CFLAGS)" \
                    118:                    CXXFLAGS="$(CXXFLAGS)" \
                    119:                    LDFLAGS="-L@SYSROOT2@/usr/lib $(LDFLAGS)" \
                    120:                    ./Configure --prefix=$(top_builddir)/rplcas \
                    121:                    --with-gmp=../lib/libgmp.a \
                    122:                    --without-readline --graphic=none -s); \
                    123:        fi; \
1.46      bertrand  124:        (cd @PARI@ && \
                    125:                sed -i -e 's/perl/perl -I./g' \
                    126:                        $$(find . -maxdepth 1 -name "O*")/Makefile); \
1.4       bertrand  127:        touch @PARI@/configured; \
                    128:    fi
1.28      bertrand  129:    $(MAKE) -C @PARI@ $(AM_MAKEFLAGS) gp && \
1.16      bertrand  130:            $(MAKE) -C @PARI@ $(AM_MAKEFLAGS) install
1.4       bertrand  131: 
1.25      bertrand  132: lib/@LIB_PREFIX@giac.a: lib/@LIB_PREFIX@gmp.a lib/@LIB_PREFIX@mpfr.a lib/ntl.a \
1.62    ! bertrand  133:        lib/libpari.a lib/@LIB_PREFIX@mpfi.a
1.4       bertrand  134:    if [ ! -d @GIAC@ ]; then \
                    135:        mkdir @GIAC@ ; \
                    136:    fi
1.37      bertrand  137:    if [ @BUILD@ = @HOST@ ]; then \
                    138:        (cd @GIAC@ && \
                    139:                CXX=@CXX@ \
                    140:                CPPFLAGS="-I$(top_builddir)/rplcas/include -I$(top_builddir)/tools/@GSL@ $(CPPFLAGS)" \
                    141:                CXXFLAGS="$(CXXFLAGS) -fpermissive" \
1.62    ! bertrand  142:                LDFLAGS="$(top_builddir)/rplcas/lib/libpari.a $(top_builddir)/rplcas/lib/ntl.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfi.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfr.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@gmp.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@gmpxx.a" \
1.37      bertrand  143:                ../$(srcdir)/@GIAC@/configure --prefix=$(top_builddir)/rplcas \
1.43      bertrand  144:                --enable-pari \
                    145:                --enable-ntl \
                    146:                --enable-gsl \
1.37      bertrand  147:                --disable-shared --enable-static \
                    148:                --disable-gui --without-x); \
                    149:    else \
                    150:        (cd @GIAC@ && \
                    151:                CPPFLAGS="-I$(top_builddir)/rplcas/include -I$(top_builddir)/tools/@GSL@ @SYSROOT@ $(CPPFLAGS)" \
                    152:                CXXFLAGS="$(CXXFLAGS) -fpermissive" \
1.62    ! bertrand  153:                LDFLAGS="$(top_builddir)/rplcas/lib/libpari.a $(top_builddir)/rplcas/lib/ntl.a $(top_builddir)/tools/@GSL@/.libs/libgsl.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfi.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@mpfr.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@gmp.a $(top_builddir)/rplcas/lib/@LIB_PREFIX@gmpxx.a $(LDFLAGS) $(LIBGIAC)" \
1.37      bertrand  154:                ../$(srcdir)/@GIAC@/configure --prefix=$(top_builddir)/rplcas \
                    155:                --host=@HOST@ \
1.43      bertrand  156:                --enable-pari \
                    157:                --enable-ntl \
                    158:                --enable-gsl \
1.37      bertrand  159:                --disable-shared --enable-static \
                    160:                --disable-gui --without-x); \
                    161:    fi; \
                    162:    (cd @GIAC@/src && \
                    163:            mv -f config.h config.h.orig && \
                    164:            sed -e 's/#define HAVE_LIBPNG 1//' config.h.orig | \
1.61      bertrand  165:            sed -e 's/\/\* #undef HAVE_LIBGMP \*\//#define HAVE_LIBMP/' | \
                    166:            sed -e 's/\/\* #undef HAVE_LIBGMPXX \*\//#define HAVE_LIBMPXX/' | \
                    167:            sed -e 's/\/\* #undef HAVE_LIBMPFR \*\//#define HAVE_LIBPFR/' | \
                    168:            sed -e 's/\/\* #undef HAVE_LIBMPFI \*\//#define HAVE_LIBPFI/' | \
                    169:            sed -e 's/\/\* #undef HAVE_LIBNTL \*\//#define HAVE_LIBNTL/' | \
                    170:            sed -e 's/\/\* #undef HAVE_LIBPARI \*\//#define HAVE_LIBPARI/' | \
                    171:            sed -e 's/\/\* #undef HAVE_LIBGSL \*\//#define HAVE_LIBGSL/' | \
1.62    ! bertrand  172:            sed -e 's/\/#define HAVE_LIBCOCOA 1//' | \
1.37      bertrand  173:            sed -e 's/#define HAVE_PNG_H 1//' > config.h && \
                    174:            rm -f config.h.orig); \
1.44      bertrand  175:    (cd @GIAC@/src && \
                    176:            mv -f Makefile Makefile.orig && \
                    177:            sed -e 's/-lntl//' Makefile.orig | \
                    178:            sed -e 's/-lgmp//' | \
                    179:            sed -e 's/-lmpfr//' > Makefile && \
                    180:            rm -f Makefile.orig); \
1.37      bertrand  181:    $(MAKE) -C @GIAC@ $(AM_MAKEFLAGS)
1.23      bertrand  182:    if [ x$(srcdir) != x. ]; then \
                    183:        for i in mkinstalldirs xcas.xpm xcas.desktop xcas.applications; \
                    184:                do cp $(srcdir)/@GIAC@/$$i @GIAC@/$$i; done; \
1.38      bertrand  185:        cp -R $(srcdir)/@GIAC@/icons @GIAC@; \
1.23      bertrand  186:    fi
1.37      bertrand  187:    $(MAKE) -C @GIAC@ $(AM_MAKEFLAGS) install
1.1       bertrand  188: 
1.25      bertrand  189: lib/librplcas.a: lib/@LIB_PREFIX@giac.a lib/@LIB_PREFIX@gmp.a \
1.62    ! bertrand  190:        lib/@LIB_PREFIX@mpfr.a lib/ntl.a lib/libpari.a \
1.44      bertrand  191:        lib/@LIB_PREFIX@mpfi.a
1.7       bertrand  192:    if [ ! -d tmp ]; then mkdir tmp; fi
1.45      bertrand  193:    for i in `ar t lib/@LIB_PREFIX@giac.a | grep a$$`; \
                    194:    do ar d lib/@LIB_PREFIX@giac.a $$i; \
                    195:    done
1.26      bertrand  196:    @(cd tmp && n=0 && \
1.25      bertrand  197:            rm -f * && \
                    198:            echo Building standalone librplcas.a; \
                    199:            for i in ../lib/@LIB_PREFIX@gmp.a \
                    200:                    ../lib/@LIB_PREFIX@mpfr.a \
1.44      bertrand  201:                    ../lib/@LIB_PREFIX@mpfi.a \
1.25      bertrand  202:                    ../lib/libpari.a \
                    203:                    ../lib/ntl.a \
                    204:                    ../lib/@LIB_PREFIX@giac.a; \
                    205:                do echo Extracting $$i; ar x $$i; \
                    206:                for j in `ar t $$i`; \
                    207:                do cp -f $$j $$n-$$j; \
                    208:                    rm -f $$j; \
                    209:                done; \
                    210:                n=`expr $$n + 1`; \
                    211:            done; \
                    212:            L="start"; \
                    213:            while test -n "$$L"; \
                    214:            do \
                    215:                echo -n "Remaining files "; \
                    216:                find . -name "*.$(OBJEXT)" | wc -l; \
                    217:                L=""; j=0; \
                    218:                for i in `find . -name "*.$(OBJEXT)"`; \
                    219:                do \
                    220:                    k=`echo $$i | wc -c`; \
                    221:                    j=`expr $$j + $$k + 1`; \
                    222:                    if test $$j -le 8000; then \
                    223:                        L="$$L $$i"; \
                    224:                    else \
                    225:                        break; \
                    226:                    fi; \
                    227:                done; \
                    228:                if test -n "$$L"; then \
                    229:                    echo -n "Adding files to librplcas.a archive... "; \
1.42      bertrand  230:                    ar cr ../lib/librplcas.a $$L; \
1.25      bertrand  231:                    rm -f $$L; \
                    232:                    echo "done"; \
                    233:                fi; \
                    234:            done; \
                    235:            echo Archive created; \
                    236:            ar s ../lib/librplcas.a; \
                    237:            if [ @OS@ != OS2 -a @OS@ != Darwin ]; then \
                    238:                echo Stripping librplcas.a && strip -d ../lib/librplcas.a; \
                    239:            fi;)
1.45      bertrand  240:    rmdir tmp
1.7       bertrand  241: 
1.14      bertrand  242: install:
1.1       bertrand  243: 
1.24      bertrand  244: uninstall:
                    245: 
1.3       bertrand  246: clean:
1.8       bertrand  247:    \rm -f $(top_builddir)/rplcas/lib/lib*
1.2       bertrand  248: 
                    249: distdir:

CVSweb interface <joel.bertrand@systella.fr>